Skip to content

Instantly share code, notes, and snippets.

@Euphorbium
Created September 22, 2017 09:13
Show Gist options
  • Save Euphorbium/5f156eab9ff65b164c494f364ef6f4f8 to your computer and use it in GitHub Desktop.
Save Euphorbium/5f156eab9ff65b164c494f364ef6f4f8 to your computer and use it in GitHub Desktop.
make dep &> make.out
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C dep
wget -nc https://downloads.sourceforge.net/project/glew/glew/2.1.0/glew-2.1.0.tgz
--2017-09-22 12:07:21-- https://downloads.sourceforge.net/project/glew/glew/2.1.0/glew-2.1.0.tgz
Resolving downloads.sourceforge.net... 216.34.181.59
Connecting to downloads.sourceforge.net|216.34.181.59|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://netix.dl.sourceforge.net/project/glew/glew/2.1.0/glew-2.1.0.tgz [following]
--2017-09-22 12:07:21-- https://netix.dl.sourceforge.net/project/glew/glew/2.1.0/glew-2.1.0.tgz
Resolving netix.dl.sourceforge.net... 87.121.121.2
Connecting to netix.dl.sourceforge.net|87.121.121.2|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 764073 (746K) [application/octet-stream]
Saving to: 'glew-2.1.0.tgz'
0K .......... .......... .......... .......... .......... 6% 444K 2s
50K .......... .......... .......... .......... .......... 13% 900K 1s
100K .......... .......... .......... .......... .......... 20% 1.29M 1s
150K .......... .......... .......... .......... .......... 26% 3.63M 1s
200K .......... .......... .......... .......... .......... 33% 2.73M 0s
250K .......... .......... .......... .......... .......... 40% 1.34M 0s
300K .......... .......... .......... .......... .......... 46% 4.89M 0s
350K .......... .......... .......... .......... .......... 53% 2.68M 0s
400K .......... .......... .......... .......... .......... 60% 1.28M 0s
450K .......... .......... .......... .......... .......... 67% 4.35M 0s
500K .......... .......... .......... .......... .......... 73% 3.91M 0s
550K .......... .......... .......... .......... .......... 80% 2.28M 0s
600K .......... .......... .......... .......... .......... 87% 1.50M 0s
650K .......... .......... .......... .......... .......... 93% 4.05M 0s
700K .......... .......... .......... .......... ...... 100% 4.52M=0.4s
2017-09-22 12:07:23 (1.66 MB/s) - 'glew-2.1.0.tgz' saved [764073/764073]
tar xf glew-2.1.0.tgz
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C glew-2.1.0 glew.lib
cc -DGLEW_NO_GLU -DGLEW_BUILD -Os -Wall -W -Iinclude -dynamic -fno-common -pedantic -fPIC -std=c89 -o tmp/darwin/default/shared/glew.o -c src/glew.c
cc -dynamiclib -install_name /usr/local/lib/libGLEW.2.1.0.dylib -current_version 2.1.0 -compatibility_version 2.1 -o lib/libGLEW.2.1.0.dylib tmp/darwin/default/shared/glew.o -framework OpenGL
ln -sf libGLEW.2.1.0.dylib lib/libGLEW.2.1.dylib
ln -sf libGLEW.2.1.0.dylib lib/libGLEW.dylib
strip -x lib/libGLEW.2.1.0.dylib
sed \
-e "s|@prefix@|/usr|g" \
-e "s|@libdir@|/usr/local/lib|g" \
-e "s|@exec_prefix@|/usr/local/bin|g" \
-e "s|@includedir@|/usr/local/include/GL|g" \
-e "s|@version@|2.1.0|g" \
-e "s|@cflags@||g" \
-e "s|@libname@|GLEW|g" \
-e "s|@requireslib@||g" \
< glew.pc.in > glew.pc
cc -DGLEW_NO_GLU -DGLEW_STATIC -Os -Wall -W -Iinclude -dynamic -fno-common -pedantic -fPIC -std=c89 -o tmp/darwin/default/static/glew.o -c src/glew.c
ar rv lib/libGLEW.a tmp/darwin/default/static/glew.o
ar: creating archive lib/libGLEW.a
a - tmp/darwin/default/static/glew.o
strip -x lib/libGLEW.a
# On Linux, default lib path is lib64, so change it back to lib.
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C glew-2.1.0 GLEW_DEST="/Users/euphorbium/experiments/Rack" LIBDIR="/Users/euphorbium/experiments/Rack/lib" install
install -d -m 0755 "/Users/euphorbium/experiments/Rack/include/GL"
install -m 0644 include/GL/wglew.h "/Users/euphorbium/experiments/Rack/include/GL/"
install -m 0644 include/GL/glew.h "/Users/euphorbium/experiments/Rack/include/GL/"
install -m 0644 include/GL/glxew.h "/Users/euphorbium/experiments/Rack/include/GL/"
sed \
-e "s|@prefix@|/usr|g" \
-e "s|@libdir@|/Users/euphorbium/experiments/Rack/lib|g" \
-e "s|@exec_prefix@|/Users/euphorbium/experiments/Rack/bin|g" \
-e "s|@includedir@|/Users/euphorbium/experiments/Rack/include/GL|g" \
-e "s|@version@|2.1.0|g" \
-e "s|@cflags@||g" \
-e "s|@libname@|GLEW|g" \
-e "s|@requireslib@||g" \
< glew.pc.in > glew.pc
ar rv lib/libGLEW.a tmp/darwin/default/static/glew.o
r - tmp/darwin/default/static/glew.o
strip -x lib/libGLEW.a
install -d -m 0755 "/Users/euphorbium/experiments/Rack/lib"
install -m 0644 lib/libGLEW.2.1.0.dylib "/Users/euphorbium/experiments/Rack/lib/"
ln -sf libGLEW.2.1.0.dylib "/Users/euphorbium/experiments/Rack/lib/libGLEW.2.1.dylib"
ln -sf libGLEW.2.1.0.dylib "/Users/euphorbium/experiments/Rack/lib/libGLEW.dylib"
install -m 0644 lib/libGLEW.a "/Users/euphorbium/experiments/Rack/lib/"
install -d -m 0755 "/Users/euphorbium/experiments/Rack/lib/pkgconfig"
install -d -m 0755 "/Users/euphorbium/experiments/Rack/lib/pkgconfig"
install -m 0644 glew.pc "/Users/euphorbium/experiments/Rack/lib/pkgconfig/"
wget -nc https://github.com/glfw/glfw/releases/download/3.2.1/glfw-3.2.1.zip
--2017-09-22 12:07:44-- https://github.com/glfw/glfw/releases/download/3.2.1/glfw-3.2.1.zip
Resolving github.com... 192.30.253.112, 192.30.253.113
Connecting to github.com|192.30.253.112|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://github-production-release-asset-2e65be.s3.amazonaws.com/9524997/04e92b64-655d-11e6-8464-cce951a4885e?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20170922%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20170922T090745Z&X-Amz-Expires=300&X-Amz-Signature=494fd2b602bf950781e6eb2d4c1057d5c0be59484f1816f8081ea10ff869203a&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Dglfw-3.2.1.zip&response-content-type=application%2Foctet-stream [following]
--2017-09-22 12:07:45-- https://github-production-release-asset-2e65be.s3.amazonaws.com/9524997/04e92b64-655d-11e6-8464-cce951a4885e?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20170922%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20170922T090745Z&X-Amz-Expires=300&X-Amz-Signature=494fd2b602bf950781e6eb2d4c1057d5c0be59484f1816f8081ea10ff869203a&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Dglfw-3.2.1.zip&response-content-type=application%2Foctet-stream
Resolving github-production-release-asset-2e65be.s3.amazonaws.com... 52.216.18.96
Connecting to github-production-release-asset-2e65be.s3.amazonaws.com|52.216.18.96|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1144633 (1.1M) [application/octet-stream]
Saving to: 'glfw-3.2.1.zip'
0K .......... .......... .......... .......... .......... 4% 200K 5s
50K .......... .......... .......... .......... .......... 8% 403K 4s
100K .......... .......... .......... .......... .......... 13% 442K 3s
150K .......... .......... .......... .......... .......... 17% 2.45M 2s
200K .......... .......... .......... .......... .......... 22% 498K 2s
250K .......... .......... .......... .......... .......... 26% 2.38M 2s
300K .......... .......... .......... .......... .......... 31% 603K 2s
350K .......... .......... .......... .......... .......... 35% 3.14M 1s
400K .......... .......... .......... .......... .......... 40% 1.67M 1s
450K .......... .......... .......... .......... .......... 44% 4.23M 1s
500K .......... .......... .......... .......... .......... 49% 772K 1s
550K .......... .......... .......... .......... .......... 53% 3.40M 1s
600K .......... .......... .......... .......... .......... 58% 3.56M 1s
650K .......... .......... .......... .......... .......... 62% 1.52M 1s
700K .......... .......... .......... .......... .......... 67% 4.02M 0s
750K .......... .......... .......... .......... .......... 71% 1018K 0s
800K .......... .......... .......... .......... .......... 76% 2.63M 0s
850K .......... .......... .......... .......... .......... 80% 3.67M 0s
900K .......... .......... .......... .......... .......... 84% 2.38M 0s
950K .......... .......... .......... .......... .......... 89% 2.14M 0s
1000K .......... .......... .......... .......... .......... 93% 1.31M 0s
1050K .......... .......... .......... .......... .......... 98% 2.78M 0s
1100K .......... ....... 100% 5.57M=1.1s
2017-09-22 12:07:46 (1.00 MB/s) - 'glfw-3.2.1.zip' saved [1144633/1144633]
unzip glfw-3.2.1.zip
Archive: glfw-3.2.1.zip
creating: glfw-3.2.1/
inflating: glfw-3.2.1/.travis.yml
creating: glfw-3.2.1/include/
creating: glfw-3.2.1/include/GLFW/
inflating: glfw-3.2.1/include/GLFW/glfw3.h
inflating: glfw-3.2.1/include/GLFW/glfw3native.h
inflating: glfw-3.2.1/.appveyor.yml
inflating: glfw-3.2.1/COPYING.txt
creating: glfw-3.2.1/examples/
inflating: glfw-3.2.1/examples/particles.c
inflating: glfw-3.2.1/examples/simple.c
inflating: glfw-3.2.1/examples/glfw.rc
inflating: glfw-3.2.1/examples/glfw.ico
inflating: glfw-3.2.1/examples/heightmap.c
inflating: glfw-3.2.1/examples/CMakeLists.txt
inflating: glfw-3.2.1/examples/gears.c
inflating: glfw-3.2.1/examples/wave.c
inflating: glfw-3.2.1/examples/splitview.c
inflating: glfw-3.2.1/examples/boing.c
inflating: glfw-3.2.1/examples/glfw.icns
creating: glfw-3.2.1/docs/
inflating: glfw-3.2.1/docs/moving.dox
inflating: glfw-3.2.1/docs/monitor.dox
inflating: glfw-3.2.1/docs/spaces.svg
inflating: glfw-3.2.1/docs/compile.dox
inflating: glfw-3.2.1/docs/DoxygenLayout.xml
inflating: glfw-3.2.1/docs/extra.less
inflating: glfw-3.2.1/docs/vulkan.dox
inflating: glfw-3.2.1/docs/build.dox
inflating: glfw-3.2.1/docs/header.html
inflating: glfw-3.2.1/docs/context.dox
inflating: glfw-3.2.1/docs/main.dox
inflating: glfw-3.2.1/docs/CMakeLists.txt
inflating: glfw-3.2.1/docs/news.dox
inflating: glfw-3.2.1/docs/window.dox
inflating: glfw-3.2.1/docs/internal.dox
inflating: glfw-3.2.1/docs/input.dox
inflating: glfw-3.2.1/docs/quick.dox
inflating: glfw-3.2.1/docs/extra.css
inflating: glfw-3.2.1/docs/compat.dox
inflating: glfw-3.2.1/docs/footer.html
creating: glfw-3.2.1/docs/html/
inflating: glfw-3.2.1/docs/html/globals_defs_o.html
inflating: glfw-3.2.1/docs/html/build_8dox.html
inflating: glfw-3.2.1/docs/html/globals_defs_b.html
inflating: glfw-3.2.1/docs/html/open.png
inflating: glfw-3.2.1/docs/html/globals_defs_f.html
inflating: glfw-3.2.1/docs/html/moving_guide.html
inflating: glfw-3.2.1/docs/html/group__native.html
inflating: glfw-3.2.1/docs/html/globals_defs_h.html
inflating: glfw-3.2.1/docs/html/globals_defs_t.html
inflating: glfw-3.2.1/docs/html/vulkan_guide.html
inflating: glfw-3.2.1/docs/html/intro_8dox.html
inflating: glfw-3.2.1/docs/html/intro_guide.html
inflating: glfw-3.2.1/docs/html/group__joysticks.html
inflating: glfw-3.2.1/docs/html/globals_t.html
inflating: glfw-3.2.1/docs/html/tabs.css
inflating: glfw-3.2.1/docs/html/functions_vars.html
inflating: glfw-3.2.1/docs/html/globals_r.html
inflating: glfw-3.2.1/docs/html/splitbar.png
inflating: glfw-3.2.1/docs/html/group__keys.html
inflating: glfw-3.2.1/docs/html/compat_8dox.html
inflating: glfw-3.2.1/docs/html/group__buttons.html
inflating: glfw-3.2.1/docs/html/group__shapes.html
inflating: glfw-3.2.1/docs/html/globals_defs_d.html
inflating: glfw-3.2.1/docs/html/bug.html
extracting: glfw-3.2.1/docs/html/sync_on.png
inflating: glfw-3.2.1/docs/html/glfw3native_8h_source.html
inflating: glfw-3.2.1/docs/html/spaces.svg
inflating: glfw-3.2.1/docs/html/group__context.html
inflating: glfw-3.2.1/docs/html/globals_i.html
inflating: glfw-3.2.1/docs/html/globals_defs_l.html
inflating: glfw-3.2.1/docs/html/nav_h.png
inflating: glfw-3.2.1/docs/html/window_8dox.html
extracting: glfw-3.2.1/docs/html/folderopen.png
inflating: glfw-3.2.1/docs/html/globals_k.html
inflating: glfw-3.2.1/docs/html/doxygen.css
inflating: glfw-3.2.1/docs/html/globals_l.html
extracting: glfw-3.2.1/docs/html/bc_s.png
inflating: glfw-3.2.1/docs/html/input_guide.html
inflating: glfw-3.2.1/docs/html/globals_defs_i.html
extracting: glfw-3.2.1/docs/html/doxygen.png
inflating: glfw-3.2.1/docs/html/jquery.js
inflating: glfw-3.2.1/docs/html/group__init.html
inflating: glfw-3.2.1/docs/html/compat_guide.html
inflating: glfw-3.2.1/docs/html/group__window.html
inflating: glfw-3.2.1/docs/html/main_8dox.html
inflating: glfw-3.2.1/docs/html/globals_type.html
inflating: glfw-3.2.1/docs/html/globals_p.html
inflating: glfw-3.2.1/docs/html/nav_g.png
inflating: glfw-3.2.1/docs/html/group__mods.html
extracting: glfw-3.2.1/docs/html/tab_b.png
extracting: glfw-3.2.1/docs/html/sync_off.png
inflating: glfw-3.2.1/docs/html/globals_j.html
inflating: glfw-3.2.1/docs/html/globals_b.html
inflating: glfw-3.2.1/docs/html/classes.html
inflating: glfw-3.2.1/docs/html/globals_m.html
inflating: glfw-3.2.1/docs/html/moving_8dox.html
inflating: glfw-3.2.1/docs/html/files.html
inflating: glfw-3.2.1/docs/html/context_guide.html
inflating: glfw-3.2.1/docs/html/closed.png
inflating: glfw-3.2.1/docs/html/globals_w.html
inflating: glfw-3.2.1/docs/html/news_8dox.html
inflating: glfw-3.2.1/docs/html/dir_4bcf8e981abe5adb811ce4f57d70c9af.html
inflating: glfw-3.2.1/docs/html/compile_guide.html
inflating: glfw-3.2.1/docs/html/monitor_8dox.html
inflating: glfw-3.2.1/docs/html/globals_defs_p.html
inflating: glfw-3.2.1/docs/html/globals_defs_c.html
inflating: glfw-3.2.1/docs/html/globals_defs_j.html
inflating: glfw-3.2.1/docs/html/glfw3_8h.html
inflating: glfw-3.2.1/docs/html/dir_1f12d41534b9d9c99a183e145b58d6f3.html
inflating: glfw-3.2.1/docs/html/bdwn.png
inflating: glfw-3.2.1/docs/html/build_guide.html
extracting: glfw-3.2.1/docs/html/arrowdown.png
inflating: glfw-3.2.1/docs/html/globals_e.html
inflating: glfw-3.2.1/docs/html/globals_s.html
inflating: glfw-3.2.1/docs/html/globals_n.html
inflating: glfw-3.2.1/docs/html/group__input.html
inflating: glfw-3.2.1/docs/html/news.html
inflating: glfw-3.2.1/docs/html/globals_func.html
inflating: glfw-3.2.1/docs/html/index.html
inflating: glfw-3.2.1/docs/html/globals_f.html
inflating: glfw-3.2.1/docs/html/glfw3native_8h.html
inflating: glfw-3.2.1/docs/html/globals_defs_v.html
extracting: glfw-3.2.1/docs/html/nav_f.png
creating: glfw-3.2.1/docs/html/search/
inflating: glfw-3.2.1/docs/html/search/groups_6.js
inflating: glfw-3.2.1/docs/html/search/groups_0.js
inflating: glfw-3.2.1/docs/html/search/pages_6.html
inflating: glfw-3.2.1/docs/html/search/groups_9.html
inflating: glfw-3.2.1/docs/html/search/defines_0.html
inflating: glfw-3.2.1/docs/html/search/typedefs_0.html
inflating: glfw-3.2.1/docs/html/search/functions_0.html
inflating: glfw-3.2.1/docs/html/search/all_6.html
inflating: glfw-3.2.1/docs/html/search/files_5.js
inflating: glfw-3.2.1/docs/html/search/groups_7.js
extracting: glfw-3.2.1/docs/html/search/close.png
inflating: glfw-3.2.1/docs/html/search/all_2.js
inflating: glfw-3.2.1/docs/html/search/all_5.js
inflating: glfw-3.2.1/docs/html/search/files_2.js
inflating: glfw-3.2.1/docs/html/search/groups_2.js
inflating: glfw-3.2.1/docs/html/search/variables_2.js
inflating: glfw-3.2.1/docs/html/search/all_9.html
inflating: glfw-3.2.1/docs/html/search/defines_0.js
inflating: glfw-3.2.1/docs/html/search/all_8.html
inflating: glfw-3.2.1/docs/html/search/files_7.js
inflating: glfw-3.2.1/docs/html/search/all_b.js
inflating: glfw-3.2.1/docs/html/search/all_d.js
inflating: glfw-3.2.1/docs/html/search/groups_5.html
inflating: glfw-3.2.1/docs/html/search/groups_3.html
extracting: glfw-3.2.1/docs/html/search/mag_sel.png
inflating: glfw-3.2.1/docs/html/search/files_8.js
inflating: glfw-3.2.1/docs/html/search/variables_6.js
inflating: glfw-3.2.1/docs/html/search/files_0.html
inflating: glfw-3.2.1/docs/html/search/pages_8.html
inflating: glfw-3.2.1/docs/html/search/files_1.js
inflating: glfw-3.2.1/docs/html/search/pages_6.js
inflating: glfw-3.2.1/docs/html/search/all_7.html
inflating: glfw-3.2.1/docs/html/search/files_7.html
inflating: glfw-3.2.1/docs/html/search/all_0.js
inflating: glfw-3.2.1/docs/html/search/pages_7.html
inflating: glfw-3.2.1/docs/html/search/files_5.html
inflating: glfw-3.2.1/docs/html/search/all_a.html
inflating: glfw-3.2.1/docs/html/search/searchdata.js
inflating: glfw-3.2.1/docs/html/search/pages_0.js
inflating: glfw-3.2.1/docs/html/search/groups_4.html
inflating: glfw-3.2.1/docs/html/search/all_c.html
inflating: glfw-3.2.1/docs/html/search/groups_2.html
inflating: glfw-3.2.1/docs/html/search/variables_6.html
inflating: glfw-3.2.1/docs/html/search/search.js
inflating: glfw-3.2.1/docs/html/search/variables_4.js
inflating: glfw-3.2.1/docs/html/search/all_9.js
inflating: glfw-3.2.1/docs/html/search/all_d.html
inflating: glfw-3.2.1/docs/html/search/all_1.html
inflating: glfw-3.2.1/docs/html/search/pages_3.html
inflating: glfw-3.2.1/docs/html/search/pages_1.html
inflating: glfw-3.2.1/docs/html/search/variables_1.js
inflating: glfw-3.2.1/docs/html/search/groups_0.html
inflating: glfw-3.2.1/docs/html/search/pages_5.js
inflating: glfw-3.2.1/docs/html/search/pages_4.html
inflating: glfw-3.2.1/docs/html/search/files_6.js
inflating: glfw-3.2.1/docs/html/search/variables_5.html
inflating: glfw-3.2.1/docs/html/search/pages_4.js
inflating: glfw-3.2.1/docs/html/search/variables_3.js
inflating: glfw-3.2.1/docs/html/search/all_2.html
inflating: glfw-3.2.1/docs/html/search/groups_8.js
inflating: glfw-3.2.1/docs/html/search/variables_5.js
inflating: glfw-3.2.1/docs/html/search/pages_7.js
inflating: glfw-3.2.1/docs/html/search/classes_0.html
inflating: glfw-3.2.1/docs/html/search/search_m.png
inflating: glfw-3.2.1/docs/html/search/files_1.html
inflating: glfw-3.2.1/docs/html/search/pages_0.html
inflating: glfw-3.2.1/docs/html/search/files_4.js
inflating: glfw-3.2.1/docs/html/search/groups_7.html
inflating: glfw-3.2.1/docs/html/search/functions_0.js
inflating: glfw-3.2.1/docs/html/search/nomatches.html
extracting: glfw-3.2.1/docs/html/search/search_l.png
inflating: glfw-3.2.1/docs/html/search/files_4.html
inflating: glfw-3.2.1/docs/html/search/search.css
inflating: glfw-3.2.1/docs/html/search/all_0.html
inflating: glfw-3.2.1/docs/html/search/all_1.js
inflating: glfw-3.2.1/docs/html/search/all_5.html
inflating: glfw-3.2.1/docs/html/search/groups_8.html
inflating: glfw-3.2.1/docs/html/search/groups_4.js
inflating: glfw-3.2.1/docs/html/search/all_f.js
inflating: glfw-3.2.1/docs/html/search/variables_1.html
inflating: glfw-3.2.1/docs/html/search/all_7.js
inflating: glfw-3.2.1/docs/html/search/groups_3.js
inflating: glfw-3.2.1/docs/html/search/files_0.js
inflating: glfw-3.2.1/docs/html/search/all_b.html
inflating: glfw-3.2.1/docs/html/search/groups_6.html
inflating: glfw-3.2.1/docs/html/search/pages_2.js
inflating: glfw-3.2.1/docs/html/search/all_e.js
extracting: glfw-3.2.1/docs/html/search/search_r.png
inflating: glfw-3.2.1/docs/html/search/pages_1.js
inflating: glfw-3.2.1/docs/html/search/groups_1.js
inflating: glfw-3.2.1/docs/html/search/files_6.html
inflating: glfw-3.2.1/docs/html/search/all_e.html
inflating: glfw-3.2.1/docs/html/search/variables_0.js
inflating: glfw-3.2.1/docs/html/search/all_4.js
inflating: glfw-3.2.1/docs/html/search/typedefs_0.js
inflating: glfw-3.2.1/docs/html/search/files_3.html
inflating: glfw-3.2.1/docs/html/search/pages_8.js
inflating: glfw-3.2.1/docs/html/search/variables_4.html
inflating: glfw-3.2.1/docs/html/search/pages_3.js
inflating: glfw-3.2.1/docs/html/search/files_3.js
inflating: glfw-3.2.1/docs/html/search/pages_5.html
inflating: glfw-3.2.1/docs/html/search/all_6.js
inflating: glfw-3.2.1/docs/html/search/groups_5.js
inflating: glfw-3.2.1/docs/html/search/pages_2.html
inflating: glfw-3.2.1/docs/html/search/variables_0.html
inflating: glfw-3.2.1/docs/html/search/all_f.html
inflating: glfw-3.2.1/docs/html/search/groups_9.js
inflating: glfw-3.2.1/docs/html/search/all_a.js
inflating: glfw-3.2.1/docs/html/search/variables_3.html
inflating: glfw-3.2.1/docs/html/search/files_8.html
inflating: glfw-3.2.1/docs/html/search/variables_2.html
inflating: glfw-3.2.1/docs/html/search/groups_1.html
inflating: glfw-3.2.1/docs/html/search/classes_0.js
inflating: glfw-3.2.1/docs/html/search/files_2.html
inflating: glfw-3.2.1/docs/html/search/all_3.html
inflating: glfw-3.2.1/docs/html/search/all_3.js
inflating: glfw-3.2.1/docs/html/search/all_8.js
inflating: glfw-3.2.1/docs/html/search/all_c.js
inflating: glfw-3.2.1/docs/html/search/all_4.html
inflating: glfw-3.2.1/docs/html/globals_d.html
inflating: glfw-3.2.1/docs/html/glfw3_8h_source.html
inflating: glfw-3.2.1/docs/html/dynsections.js
inflating: glfw-3.2.1/docs/html/structGLFWimage.html
inflating: glfw-3.2.1/docs/html/annotated.html
inflating: glfw-3.2.1/docs/html/input_8dox.html
extracting: glfw-3.2.1/docs/html/arrowright.png
inflating: glfw-3.2.1/docs/html/quick_8dox.html
inflating: glfw-3.2.1/docs/html/globals_h.html
inflating: glfw-3.2.1/docs/html/globals_o.html
inflating: glfw-3.2.1/docs/html/compile_8dox.html
inflating: glfw-3.2.1/docs/html/functions.html
inflating: glfw-3.2.1/docs/html/modules.html
extracting: glfw-3.2.1/docs/html/folderclosed.png
inflating: glfw-3.2.1/docs/html/globals_defs_r.html
inflating: glfw-3.2.1/docs/html/monitor_guide.html
inflating: glfw-3.2.1/docs/html/globals_defs.html
inflating: glfw-3.2.1/docs/html/globals_defs_m.html
inflating: glfw-3.2.1/docs/html/globals_defs_g.html
inflating: glfw-3.2.1/docs/html/globals.html
inflating: glfw-3.2.1/docs/html/quick_guide.html
inflating: glfw-3.2.1/docs/html/structGLFWgammaramp.html
inflating: glfw-3.2.1/docs/html/group__errors.html
inflating: glfw-3.2.1/docs/html/group__monitor.html
inflating: glfw-3.2.1/docs/html/extra.css
extracting: glfw-3.2.1/docs/html/doc.png
inflating: glfw-3.2.1/docs/html/globals_c.html
inflating: glfw-3.2.1/docs/html/dir_351f617146de9499414a6c099ebbe0ca.html
inflating: glfw-3.2.1/docs/html/globals_defs_n.html
inflating: glfw-3.2.1/docs/html/globals_defs_s.html
extracting: glfw-3.2.1/docs/html/tab_s.png
extracting: glfw-3.2.1/docs/html/tab_a.png
inflating: glfw-3.2.1/docs/html/globals_g.html
inflating: glfw-3.2.1/docs/html/globals_defs_k.html
inflating: glfw-3.2.1/docs/html/globals_defs_e.html
inflating: glfw-3.2.1/docs/html/group__vulkan.html
inflating: glfw-3.2.1/docs/html/pages.html
inflating: glfw-3.2.1/docs/html/context_8dox.html
inflating: glfw-3.2.1/docs/html/structGLFWvidmode.html
extracting: glfw-3.2.1/docs/html/tab_h.png
inflating: glfw-3.2.1/docs/html/globals_v.html
inflating: glfw-3.2.1/docs/html/window_guide.html
inflating: glfw-3.2.1/docs/html/vulkan_8dox.html
inflating: glfw-3.2.1/docs/intro.dox
inflating: glfw-3.2.1/docs/Doxyfile.in
inflating: glfw-3.2.1/cmake_uninstall.cmake.in
creating: glfw-3.2.1/src/
inflating: glfw-3.2.1/src/init.c
inflating: glfw-3.2.1/src/win32_joystick.c
inflating: glfw-3.2.1/src/context.c
inflating: glfw-3.2.1/src/glx_context.c
inflating: glfw-3.2.1/src/glfw_config.h.in
inflating: glfw-3.2.1/src/win32_init.c
inflating: glfw-3.2.1/src/linux_joystick.h
inflating: glfw-3.2.1/src/glx_context.h
inflating: glfw-3.2.1/src/vulkan.c
inflating: glfw-3.2.1/src/cocoa_joystick.m
inflating: glfw-3.2.1/src/wl_init.c
inflating: glfw-3.2.1/src/cocoa_time.c
inflating: glfw-3.2.1/src/wl_window.c
inflating: glfw-3.2.1/src/x11_init.c
inflating: glfw-3.2.1/src/x11_monitor.c
inflating: glfw-3.2.1/src/win32_tls.c
inflating: glfw-3.2.1/src/mir_window.c
inflating: glfw-3.2.1/src/wgl_context.h
inflating: glfw-3.2.1/src/mir_monitor.c
inflating: glfw-3.2.1/src/win32_window.c
inflating: glfw-3.2.1/src/nsgl_context.h
inflating: glfw-3.2.1/src/egl_context.c
inflating: glfw-3.2.1/src/posix_tls.h
extracting: glfw-3.2.1/src/glfw3Config.cmake.in
inflating: glfw-3.2.1/src/cocoa_monitor.m
inflating: glfw-3.2.1/src/xkb_unicode.c
inflating: glfw-3.2.1/src/xkb_unicode.h
inflating: glfw-3.2.1/src/win32_monitor.c
inflating: glfw-3.2.1/src/mir_platform.h
inflating: glfw-3.2.1/src/win32_time.c
inflating: glfw-3.2.1/src/cocoa_joystick.h
inflating: glfw-3.2.1/src/internal.h
inflating: glfw-3.2.1/src/CMakeLists.txt
inflating: glfw-3.2.1/src/posix_time.h
inflating: glfw-3.2.1/src/glfw3.pc.in
inflating: glfw-3.2.1/src/win32_platform.h
inflating: glfw-3.2.1/src/wl_platform.h
inflating: glfw-3.2.1/src/mir_init.c
inflating: glfw-3.2.1/src/cocoa_platform.h
inflating: glfw-3.2.1/src/monitor.c
inflating: glfw-3.2.1/src/egl_context.h
inflating: glfw-3.2.1/src/posix_tls.c
inflating: glfw-3.2.1/src/linux_joystick.c
inflating: glfw-3.2.1/src/wgl_context.c
inflating: glfw-3.2.1/src/input.c
inflating: glfw-3.2.1/src/win32_joystick.h
inflating: glfw-3.2.1/src/cocoa_window.m
inflating: glfw-3.2.1/src/x11_window.c
inflating: glfw-3.2.1/src/window.c
inflating: glfw-3.2.1/src/nsgl_context.m
inflating: glfw-3.2.1/src/cocoa_init.m
inflating: glfw-3.2.1/src/posix_time.c
inflating: glfw-3.2.1/src/x11_platform.h
inflating: glfw-3.2.1/src/wl_monitor.c
inflating: glfw-3.2.1/CMakeLists.txt
inflating: glfw-3.2.1/README.md
creating: glfw-3.2.1/.github/
inflating: glfw-3.2.1/.github/CONTRIBUTING.md
creating: glfw-3.2.1/CMake/
inflating: glfw-3.2.1/CMake/amd64-mingw32msvc.cmake
inflating: glfw-3.2.1/CMake/MacOSXBundleInfo.plist.in
inflating: glfw-3.2.1/CMake/i586-mingw32msvc.cmake
inflating: glfw-3.2.1/CMake/i686-w64-mingw32.cmake
creating: glfw-3.2.1/CMake/modules/
inflating: glfw-3.2.1/CMake/modules/FindMir.cmake
inflating: glfw-3.2.1/CMake/modules/FindWaylandProtocols.cmake
inflating: glfw-3.2.1/CMake/modules/FindXKBCommon.cmake
inflating: glfw-3.2.1/CMake/modules/FindVulkan.cmake
inflating: glfw-3.2.1/CMake/i686-pc-mingw32.cmake
inflating: glfw-3.2.1/CMake/x86_64-w64-mingw32.cmake
creating: glfw-3.2.1/tests/
inflating: glfw-3.2.1/tests/reopen.c
inflating: glfw-3.2.1/tests/threads.c
inflating: glfw-3.2.1/tests/cursor.c
inflating: glfw-3.2.1/tests/vulkan.c
inflating: glfw-3.2.1/tests/title.c
inflating: glfw-3.2.1/tests/windows.c
inflating: glfw-3.2.1/tests/events.c
inflating: glfw-3.2.1/tests/monitors.c
inflating: glfw-3.2.1/tests/msaa.c
inflating: glfw-3.2.1/tests/glfwinfo.c
inflating: glfw-3.2.1/tests/timeout.c
inflating: glfw-3.2.1/tests/sharing.c
inflating: glfw-3.2.1/tests/tearing.c
inflating: glfw-3.2.1/tests/CMakeLists.txt
inflating: glfw-3.2.1/tests/gamma.c
inflating: glfw-3.2.1/tests/empty.c
inflating: glfw-3.2.1/tests/clipboard.c
inflating: glfw-3.2.1/tests/joysticks.c
inflating: glfw-3.2.1/tests/icon.c
inflating: glfw-3.2.1/tests/iconify.c
creating: glfw-3.2.1/deps/
inflating: glfw-3.2.1/deps/glad.c
creating: glfw-3.2.1/deps/glad/
inflating: glfw-3.2.1/deps/glad/glad.h
creating: glfw-3.2.1/deps/vulkan/
inflating: glfw-3.2.1/deps/vulkan/vulkan.h
inflating: glfw-3.2.1/deps/vulkan/vk_platform.h
creating: glfw-3.2.1/deps/KHR/
inflating: glfw-3.2.1/deps/KHR/khrplatform.h
inflating: glfw-3.2.1/deps/getopt.c
inflating: glfw-3.2.1/deps/tinycthread.h
creating: glfw-3.2.1/deps/mingw/
inflating: glfw-3.2.1/deps/mingw/_mingw_dxhelper.h
inflating: glfw-3.2.1/deps/mingw/xinput.h
inflating: glfw-3.2.1/deps/mingw/dinput.h
inflating: glfw-3.2.1/deps/linmath.h
inflating: glfw-3.2.1/deps/tinycthread.c
inflating: glfw-3.2.1/deps/getopt.h
cd glfw-3.2.1 && cmake . \
-DCMAKE_INSTALL_PREFIX="/Users/euphorbium/experiments/Rack" -DBUILD_SHARED_LIBS=ON \
-DGLFW_USE_CHDIR=OFF -DGLFW_USE_MENUBAR=ON -DGLFW_USE_RETINA=ON
-- The C compiler identification is AppleClang 9.0.0.9000037
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - found
-- Found Threads: TRUE
-- Could NOT find Vulkan (missing: VULKAN_LIBRARY VULKAN_INCLUDE_DIR)
-- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE)
-- Using Cocoa for window creation
-- Configuring done
-- Generating done
-- Build files have been written to: /Users/euphorbium/experiments/Rack/dep/glfw-3.2.1
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C glfw-3.2.1
Scanning dependencies of target glfw
[ 1%] Building C object src/CMakeFiles/glfw.dir/context.c.o
[ 2%] Building C object src/CMakeFiles/glfw.dir/init.c.o
[ 3%] Building C object src/CMakeFiles/glfw.dir/input.c.o
[ 4%] Building C object src/CMakeFiles/glfw.dir/monitor.c.o
[ 5%] Building C object src/CMakeFiles/glfw.dir/vulkan.c.o
[ 6%] Building C object src/CMakeFiles/glfw.dir/window.c.o
[ 7%] Building C object src/CMakeFiles/glfw.dir/cocoa_init.m.o
[ 8%] Building C object src/CMakeFiles/glfw.dir/cocoa_joystick.m.o
[ 9%] Building C object src/CMakeFiles/glfw.dir/cocoa_monitor.m.o
[ 10%] Building C object src/CMakeFiles/glfw.dir/cocoa_window.m.o
[ 11%] Building C object src/CMakeFiles/glfw.dir/cocoa_time.c.o
[ 12%] Building C object src/CMakeFiles/glfw.dir/posix_tls.c.o
[ 13%] Building C object src/CMakeFiles/glfw.dir/nsgl_context.m.o
[ 14%] Linking C shared library libglfw.dylib
[ 14%] Built target glfw
Scanning dependencies of target heightmap
[ 15%] Building C object examples/CMakeFiles/heightmap.dir/heightmap.c.o
[ 16%] Building C object examples/CMakeFiles/heightmap.dir/__/deps/glad.c.o
[ 17%] Linking C executable heightmap.app/Contents/MacOS/heightmap
Copying OS X content examples/heightmap.app/Contents/Resources/glfw.icns
[ 17%] Built target heightmap
Scanning dependencies of target wave
[ 18%] Building C object examples/CMakeFiles/wave.dir/wave.c.o
[ 19%] Building C object examples/CMakeFiles/wave.dir/__/deps/glad.c.o
[ 20%] Linking C executable wave.app/Contents/MacOS/wave
Copying OS X content examples/wave.app/Contents/Resources/glfw.icns
[ 20%] Built target wave
Scanning dependencies of target splitview
[ 21%] Building C object examples/CMakeFiles/splitview.dir/splitview.c.o
[ 22%] Building C object examples/CMakeFiles/splitview.dir/__/deps/glad.c.o
[ 23%] Linking C executable splitview.app/Contents/MacOS/splitview
Copying OS X content examples/splitview.app/Contents/Resources/glfw.icns
[ 23%] Built target splitview
Scanning dependencies of target simple
[ 24%] Building C object examples/CMakeFiles/simple.dir/simple.c.o
[ 25%] Building C object examples/CMakeFiles/simple.dir/__/deps/glad.c.o
[ 26%] Linking C executable simple.app/Contents/MacOS/simple
Copying OS X content examples/simple.app/Contents/Resources/glfw.icns
[ 26%] Built target simple
Scanning dependencies of target particles
[ 27%] Building C object examples/CMakeFiles/particles.dir/particles.c.o
In file included from /Users/euphorbium/experiments/Rack/dep/glfw-3.2.1/examples/particles.c:38:
/Users/euphorbium/experiments/Rack/dep/glfw-3.2.1/deps/tinycthread.h:126:9: warning: 'CLOCK_REALTIME' macro redefined [-Wmacro-redefined]
#define CLOCK_REALTIME 0
^
/usr/include/time.h:154:9: note: previous definition is here
#define CLOCK_REALTIME _CLOCK_REALTIME
^
1 warning generated.
[ 28%] Building C object examples/CMakeFiles/particles.dir/__/deps/tinycthread.c.o
In file included from /Users/euphorbium/experiments/Rack/dep/glfw-3.2.1/deps/tinycthread.c:30:
/Users/euphorbium/experiments/Rack/dep/glfw-3.2.1/deps/tinycthread.h:126:9: warning: 'CLOCK_REALTIME' macro redefined [-Wmacro-redefined]
#define CLOCK_REALTIME 0
^
/usr/include/time.h:154:9: note: previous definition is here
#define CLOCK_REALTIME _CLOCK_REALTIME
^
1 warning generated.
[ 29%] Building C object examples/CMakeFiles/particles.dir/__/deps/getopt.c.o
[ 30%] Building C object examples/CMakeFiles/particles.dir/__/deps/glad.c.o
[ 31%] Linking C executable particles.app/Contents/MacOS/particles
Copying OS X content examples/particles.app/Contents/Resources/glfw.icns
[ 31%] Built target particles
Scanning dependencies of target gears
[ 32%] Building C object examples/CMakeFiles/gears.dir/gears.c.o
[ 33%] Building C object examples/CMakeFiles/gears.dir/__/deps/glad.c.o
[ 34%] Linking C executable gears.app/Contents/MacOS/gears
Copying OS X content examples/gears.app/Contents/Resources/glfw.icns
[ 34%] Built target gears
Scanning dependencies of target boing
[ 34%] Building C object examples/CMakeFiles/boing.dir/boing.c.o
[ 35%] Building C object examples/CMakeFiles/boing.dir/__/deps/glad.c.o
[ 36%] Linking C executable boing.app/Contents/MacOS/boing
Copying OS X content examples/boing.app/Contents/Resources/glfw.icns
[ 36%] Built target boing
Scanning dependencies of target clipboard
[ 37%] Building C object tests/CMakeFiles/clipboard.dir/clipboard.c.o
[ 38%] Building C object tests/CMakeFiles/clipboard.dir/__/deps/getopt.c.o
[ 39%] Building C object tests/CMakeFiles/clipboard.dir/__/deps/glad.c.o
[ 40%] Linking C executable clipboard
[ 40%] Built target clipboard
Scanning dependencies of target title
[ 41%] Building C object tests/CMakeFiles/title.dir/title.c.o
[ 42%] Building C object tests/CMakeFiles/title.dir/__/deps/glad.c.o
[ 43%] Linking C executable title.app/Contents/MacOS/title
[ 43%] Built target title
Scanning dependencies of target windows
[ 44%] Building C object tests/CMakeFiles/windows.dir/windows.c.o
[ 45%] Building C object tests/CMakeFiles/windows.dir/__/deps/getopt.c.o
[ 46%] Building C object tests/CMakeFiles/windows.dir/__/deps/glad.c.o
[ 47%] Linking C executable windows.app/Contents/MacOS/windows
[ 47%] Built target windows
Scanning dependencies of target timeout
[ 48%] Building C object tests/CMakeFiles/timeout.dir/timeout.c.o
[ 49%] Building C object tests/CMakeFiles/timeout.dir/__/deps/glad.c.o
[ 50%] Linking C executable timeout.app/Contents/MacOS/timeout
[ 50%] Built target timeout
Scanning dependencies of target threads
[ 51%] Building C object tests/CMakeFiles/threads.dir/threads.c.o
In file included from /Users/euphorbium/experiments/Rack/dep/glfw-3.2.1/tests/threads.c:31:
/Users/euphorbium/experiments/Rack/dep/glfw-3.2.1/deps/tinycthread.h:126:9: warning: 'CLOCK_REALTIME' macro redefined [-Wmacro-redefined]
#define CLOCK_REALTIME 0
^
/usr/include/time.h:154:9: note: previous definition is here
#define CLOCK_REALTIME _CLOCK_REALTIME
^
1 warning generated.
[ 52%] Building C object tests/CMakeFiles/threads.dir/__/deps/tinycthread.c.o
In file included from /Users/euphorbium/experiments/Rack/dep/glfw-3.2.1/deps/tinycthread.c:30:
/Users/euphorbium/experiments/Rack/dep/glfw-3.2.1/deps/tinycthread.h:126:9: warning: 'CLOCK_REALTIME' macro redefined [-Wmacro-redefined]
#define CLOCK_REALTIME 0
^
/usr/include/time.h:154:9: note: previous definition is here
#define CLOCK_REALTIME _CLOCK_REALTIME
^
1 warning generated.
[ 53%] Building C object tests/CMakeFiles/threads.dir/__/deps/glad.c.o
[ 54%] Linking C executable threads.app/Contents/MacOS/threads
[ 54%] Built target threads
Scanning dependencies of target gamma
[ 55%] Building C object tests/CMakeFiles/gamma.dir/gamma.c.o
[ 56%] Building C object tests/CMakeFiles/gamma.dir/__/deps/getopt.c.o
[ 57%] Building C object tests/CMakeFiles/gamma.dir/__/deps/glad.c.o
[ 58%] Linking C executable gamma
[ 58%] Built target gamma
Scanning dependencies of target tearing
[ 59%] Building C object tests/CMakeFiles/tearing.dir/tearing.c.o
[ 60%] Building C object tests/CMakeFiles/tearing.dir/__/deps/getopt.c.o
[ 61%] Building C object tests/CMakeFiles/tearing.dir/__/deps/glad.c.o
[ 62%] Linking C executable tearing.app/Contents/MacOS/tearing
[ 62%] Built target tearing
Scanning dependencies of target icon
[ 63%] Building C object tests/CMakeFiles/icon.dir/icon.c.o
[ 64%] Building C object tests/CMakeFiles/icon.dir/__/deps/glad.c.o
[ 65%] Linking C executable icon.app/Contents/MacOS/icon
[ 65%] Built target icon
Scanning dependencies of target empty
[ 66%] Building C object tests/CMakeFiles/empty.dir/empty.c.o
In file included from /Users/euphorbium/experiments/Rack/dep/glfw-3.2.1/tests/empty.c:30:
/Users/euphorbium/experiments/Rack/dep/glfw-3.2.1/deps/tinycthread.h:126:9: warning: 'CLOCK_REALTIME' macro redefined [-Wmacro-redefined]
#define CLOCK_REALTIME 0
^
/usr/include/time.h:154:9: note: previous definition is here
#define CLOCK_REALTIME _CLOCK_REALTIME
^
1 warning generated.
[ 67%] Building C object tests/CMakeFiles/empty.dir/__/deps/tinycthread.c.o
In file included from /Users/euphorbium/experiments/Rack/dep/glfw-3.2.1/deps/tinycthread.c:30:
/Users/euphorbium/experiments/Rack/dep/glfw-3.2.1/deps/tinycthread.h:126:9: warning: 'CLOCK_REALTIME' macro redefined [-Wmacro-redefined]
#define CLOCK_REALTIME 0
^
/usr/include/time.h:154:9: note: previous definition is here
#define CLOCK_REALTIME _CLOCK_REALTIME
^
1 warning generated.
[ 68%] Building C object tests/CMakeFiles/empty.dir/__/deps/glad.c.o
[ 69%] Linking C executable empty.app/Contents/MacOS/empty
[ 69%] Built target empty
Scanning dependencies of target glfwinfo
[ 70%] Building C object tests/CMakeFiles/glfwinfo.dir/glfwinfo.c.o
[ 71%] Building C object tests/CMakeFiles/glfwinfo.dir/__/deps/getopt.c.o
[ 72%] Building C object tests/CMakeFiles/glfwinfo.dir/__/deps/glad.c.o
[ 73%] Linking C executable glfwinfo
[ 73%] Built target glfwinfo
Scanning dependencies of target msaa
[ 74%] Building C object tests/CMakeFiles/msaa.dir/msaa.c.o
[ 75%] Building C object tests/CMakeFiles/msaa.dir/__/deps/getopt.c.o
[ 76%] Building C object tests/CMakeFiles/msaa.dir/__/deps/glad.c.o
[ 77%] Linking C executable msaa
[ 77%] Built target msaa
Scanning dependencies of target cursor
[ 78%] Building C object tests/CMakeFiles/cursor.dir/cursor.c.o
[ 79%] Building C object tests/CMakeFiles/cursor.dir/__/deps/glad.c.o
[ 80%] Linking C executable cursor
[ 80%] Built target cursor
Scanning dependencies of target sharing
[ 81%] Building C object tests/CMakeFiles/sharing.dir/sharing.c.o
[ 82%] Building C object tests/CMakeFiles/sharing.dir/__/deps/glad.c.o
[ 83%] Linking C executable sharing.app/Contents/MacOS/sharing
[ 83%] Built target sharing
Scanning dependencies of target monitors
[ 84%] Building C object tests/CMakeFiles/monitors.dir/monitors.c.o
[ 85%] Building C object tests/CMakeFiles/monitors.dir/__/deps/getopt.c.o
[ 86%] Building C object tests/CMakeFiles/monitors.dir/__/deps/glad.c.o
[ 87%] Linking C executable monitors
[ 87%] Built target monitors
Scanning dependencies of target reopen
[ 88%] Building C object tests/CMakeFiles/reopen.dir/reopen.c.o
[ 89%] Building C object tests/CMakeFiles/reopen.dir/__/deps/glad.c.o
[ 90%] Linking C executable reopen
[ 90%] Built target reopen
Scanning dependencies of target iconify
[ 91%] Building C object tests/CMakeFiles/iconify.dir/iconify.c.o
[ 92%] Building C object tests/CMakeFiles/iconify.dir/__/deps/getopt.c.o
[ 92%] Building C object tests/CMakeFiles/iconify.dir/__/deps/glad.c.o
[ 93%] Linking C executable iconify
[ 93%] Built target iconify
Scanning dependencies of target joysticks
[ 94%] Building C object tests/CMakeFiles/joysticks.dir/joysticks.c.o
[ 95%] Building C object tests/CMakeFiles/joysticks.dir/__/deps/glad.c.o
[ 96%] Linking C executable joysticks
[ 96%] Built target joysticks
Scanning dependencies of target events
[ 97%] Building C object tests/CMakeFiles/events.dir/events.c.o
[ 98%] Building C object tests/CMakeFiles/events.dir/__/deps/getopt.c.o
[ 99%] Building C object tests/CMakeFiles/events.dir/__/deps/glad.c.o
[100%] Linking C executable events
[100%] Built target events
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C glfw-3.2.1 install
[ 14%] Built target glfw
[ 17%] Built target heightmap
[ 20%] Built target wave
[ 23%] Built target splitview
[ 26%] Built target simple
[ 31%] Built target particles
[ 34%] Built target gears
[ 36%] Built target boing
[ 40%] Built target clipboard
[ 43%] Built target title
[ 47%] Built target windows
[ 50%] Built target timeout
[ 54%] Built target threads
[ 58%] Built target gamma
[ 62%] Built target tearing
[ 65%] Built target icon
[ 69%] Built target empty
[ 73%] Built target glfwinfo
[ 77%] Built target msaa
[ 80%] Built target cursor
[ 83%] Built target sharing
[ 87%] Built target monitors
[ 90%] Built target reopen
[ 93%] Built target iconify
[ 96%] Built target joysticks
[100%] Built target events
Install the project...
-- Install configuration: ""
-- Installing: /Users/euphorbium/experiments/Rack/include/GLFW
-- Installing: /Users/euphorbium/experiments/Rack/include/GLFW/glfw3.h
-- Installing: /Users/euphorbium/experiments/Rack/include/GLFW/glfw3native.h
-- Installing: /Users/euphorbium/experiments/Rack/lib/cmake/glfw3/glfw3Config.cmake
-- Installing: /Users/euphorbium/experiments/Rack/lib/cmake/glfw3/glfw3ConfigVersion.cmake
-- Installing: /Users/euphorbium/experiments/Rack/lib/cmake/glfw3/glfw3Targets.cmake
-- Installing: /Users/euphorbium/experiments/Rack/lib/cmake/glfw3/glfw3Targets-noconfig.cmake
-- Installing: /Users/euphorbium/experiments/Rack/lib/pkgconfig/glfw3.pc
-- Installing: /Users/euphorbium/experiments/Rack/lib/libglfw.3.2.dylib
-- Installing: /Users/euphorbium/experiments/Rack/lib/libglfw.3.dylib
-- Installing: /Users/euphorbium/experiments/Rack/lib/libglfw.dylib
wget -nc http://www.digip.org/jansson/releases/jansson-2.10.tar.gz
--2017-09-22 12:08:04-- http://www.digip.org/jansson/releases/jansson-2.10.tar.gz
Resolving www.digip.org... 91.232.156.82, 91.232.156.81
Connecting to www.digip.org|91.232.156.82|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 487855 (476K) [application/x-gzip]
Saving to: 'jansson-2.10.tar.gz'
0K .......... .......... .......... .......... .......... 10% 1.23M 0s
50K .......... .......... .......... .......... .......... 20% 1.89M 0s
100K .......... .......... .......... .......... .......... 31% 1.94M 0s
150K .......... .......... .......... .......... .......... 41% 2.37M 0s
200K .......... .......... .......... .......... .......... 52% 2.27M 0s
250K .......... .......... .......... .......... .......... 62% 2.27M 0s
300K .......... .......... .......... .......... .......... 73% 2.52M 0s
350K .......... .......... .......... .......... .......... 83% 3.38M 0s
400K .......... .......... .......... .......... .......... 94% 2.56M 0s
450K .......... .......... ...... 100% 2.63M=0.2s
2017-09-22 12:08:04 (2.14 MB/s) - 'jansson-2.10.tar.gz' saved [487855/487855]
tar xf jansson-2.10.tar.gz
cd jansson-2.10 && ./configure --prefix="/Users/euphorbium/experiments/Rack"
checking for a BSD-compatible install... /usr/local/bin/ginstall -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for gcc... gcc
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 gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking build system type... x86_64-apple-darwin16.7.0
checking host system type... x86_64-apple-darwin16.7.0
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/local/bin/sed
checking for grep that handles long lines and -e... /usr/local/bin/grep
checking for egrep... /usr/local/bin/grep -E
checking for fgrep... /usr/local/bin/grep -F
checking for ld used by gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
checking if the linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) is GNU ld... no
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 196608
checking how to convert x86_64-apple-darwin16.7.0 file names to x86_64-apple-darwin16.7.0 format... func_convert_file_noop
checking how to convert x86_64-apple-darwin16.7.0 file names to toolchain format... func_convert_file_noop
checking for /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... no
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for dsymutil... dsymutil
checking for nmedit... nmedit
checking for lipo... lipo
checking for otool... otool
checking for otool64... no
checking for -single_module linker flag... yes
checking for -exported_symbols_list linker flag... yes
checking for -force_load linker flag... yes
checking how to run the C preprocessor... gcc -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 for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... yes
checking for gcc option to produce PIC... -fno-common -DPIC
checking if gcc PIC flag -fno-common -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... darwin16.7.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking endian.h usability... no
checking endian.h presence... no
checking for endian.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking sched.h usability... yes
checking sched.h presence... yes
checking for sched.h... yes
checking for unistd.h... (cached) yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking for sys/stat.h... (cached) yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for sys/types.h... (cached) yes
checking for int32_t... yes
checking for uint32_t... yes
checking for uint16_t... yes
checking for uint8_t... yes
checking for unsigned long long int... yes
checking for long long int... yes
checking for inline... inline
checking for close... yes
checking for getpid... yes
checking for gettimeofday... yes
checking for localeconv... yes
checking for open... yes
checking for read... yes
checking for sched_yield... yes
checking for strtoll... yes
checking for gcc __sync builtins... yes
checking for gcc __atomic builtins... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating jansson.pc
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating src/Makefile
config.status: creating src/jansson_config.h
config.status: creating test/Makefile
config.status: creating test/bin/Makefile
config.status: creating test/suites/Makefile
config.status: creating test/suites/api/Makefile
config.status: creating jansson_private_config.h
config.status: executing depfiles commands
config.status: executing libtool commands
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C jansson-2.10
/Applications/Xcode.app/Contents/Developer/usr/bin/make all-recursive
Making all in doc
make[4]: Nothing to be done for `all'.
Making all in src
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT dump.lo -MD -MP -MF .deps/dump.Tpo -c -o dump.lo dump.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT dump.lo -MD -MP -MF .deps/dump.Tpo -c dump.c -fno-common -DPIC -o .libs/dump.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT dump.lo -MD -MP -MF .deps/dump.Tpo -c dump.c -o dump.o >/dev/null 2>&1
mv -f .deps/dump.Tpo .deps/dump.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT error.lo -MD -MP -MF .deps/error.Tpo -c -o error.lo error.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT error.lo -MD -MP -MF .deps/error.Tpo -c error.c -fno-common -DPIC -o .libs/error.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT error.lo -MD -MP -MF .deps/error.Tpo -c error.c -o error.o >/dev/null 2>&1
mv -f .deps/error.Tpo .deps/error.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT hashtable.lo -MD -MP -MF .deps/hashtable.Tpo -c -o hashtable.lo hashtable.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT hashtable.lo -MD -MP -MF .deps/hashtable.Tpo -c hashtable.c -fno-common -DPIC -o .libs/hashtable.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT hashtable.lo -MD -MP -MF .deps/hashtable.Tpo -c hashtable.c -o hashtable.o >/dev/null 2>&1
mv -f .deps/hashtable.Tpo .deps/hashtable.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT hashtable_seed.lo -MD -MP -MF .deps/hashtable_seed.Tpo -c -o hashtable_seed.lo hashtable_seed.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT hashtable_seed.lo -MD -MP -MF .deps/hashtable_seed.Tpo -c hashtable_seed.c -fno-common -DPIC -o .libs/hashtable_seed.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT hashtable_seed.lo -MD -MP -MF .deps/hashtable_seed.Tpo -c hashtable_seed.c -o hashtable_seed.o >/dev/null 2>&1
mv -f .deps/hashtable_seed.Tpo .deps/hashtable_seed.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT load.lo -MD -MP -MF .deps/load.Tpo -c -o load.lo load.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT load.lo -MD -MP -MF .deps/load.Tpo -c load.c -fno-common -DPIC -o .libs/load.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT load.lo -MD -MP -MF .deps/load.Tpo -c load.c -o load.o >/dev/null 2>&1
mv -f .deps/load.Tpo .deps/load.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT memory.lo -MD -MP -MF .deps/memory.Tpo -c -o memory.lo memory.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT memory.lo -MD -MP -MF .deps/memory.Tpo -c memory.c -fno-common -DPIC -o .libs/memory.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT memory.lo -MD -MP -MF .deps/memory.Tpo -c memory.c -o memory.o >/dev/null 2>&1
mv -f .deps/memory.Tpo .deps/memory.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT pack_unpack.lo -MD -MP -MF .deps/pack_unpack.Tpo -c -o pack_unpack.lo pack_unpack.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT pack_unpack.lo -MD -MP -MF .deps/pack_unpack.Tpo -c pack_unpack.c -fno-common -DPIC -o .libs/pack_unpack.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT pack_unpack.lo -MD -MP -MF .deps/pack_unpack.Tpo -c pack_unpack.c -o pack_unpack.o >/dev/null 2>&1
mv -f .deps/pack_unpack.Tpo .deps/pack_unpack.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT strbuffer.lo -MD -MP -MF .deps/strbuffer.Tpo -c -o strbuffer.lo strbuffer.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT strbuffer.lo -MD -MP -MF .deps/strbuffer.Tpo -c strbuffer.c -fno-common -DPIC -o .libs/strbuffer.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT strbuffer.lo -MD -MP -MF .deps/strbuffer.Tpo -c strbuffer.c -o strbuffer.o >/dev/null 2>&1
mv -f .deps/strbuffer.Tpo .deps/strbuffer.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT strconv.lo -MD -MP -MF .deps/strconv.Tpo -c -o strconv.lo strconv.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT strconv.lo -MD -MP -MF .deps/strconv.Tpo -c strconv.c -fno-common -DPIC -o .libs/strconv.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT strconv.lo -MD -MP -MF .deps/strconv.Tpo -c strconv.c -o strconv.o >/dev/null 2>&1
mv -f .deps/strconv.Tpo .deps/strconv.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT utf.lo -MD -MP -MF .deps/utf.Tpo -c -o utf.lo utf.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT utf.lo -MD -MP -MF .deps/utf.Tpo -c utf.c -fno-common -DPIC -o .libs/utf.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT utf.lo -MD -MP -MF .deps/utf.Tpo -c utf.c -o utf.o >/dev/null 2>&1
mv -f .deps/utf.Tpo .deps/utf.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT value.lo -MD -MP -MF .deps/value.Tpo -c -o value.lo value.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT value.lo -MD -MP -MF .deps/value.Tpo -c value.c -fno-common -DPIC -o .libs/value.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -MT value.lo -MD -MP -MF .deps/value.Tpo -c value.c -o value.o >/dev/null 2>&1
mv -f .deps/value.Tpo .deps/value.Plo
/bin/sh ../libtool --tag=CC --mode=link gcc -Wall -Wextra -Wdeclaration-after-statement -mmacosx-version-min=10.7 -no-undefined -export-symbols-regex '^json_' -version-info 14:0:10 -mmacosx-version-min=10.7 -o libjansson.la -rpath /Users/euphorbium/experiments/Rack/lib dump.lo error.lo hashtable.lo hashtable_seed.lo load.lo memory.lo pack_unpack.lo strbuffer.lo strconv.lo utf.lo value.lo
libtool: link: /usr/bin/nm -B .libs/dump.o .libs/error.o .libs/hashtable.o .libs/hashtable_seed.o .libs/load.o .libs/memory.o .libs/pack_unpack.o .libs/strbuffer.o .libs/strconv.o .libs/utf.o .libs/value.o | sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p' | sed '/ __gnu_lto/d' | /usr/local/bin/sed 's/.* //' | sort | uniq > .libs/libjansson.exp
libtool: link: /usr/local/bin/grep -E -e "^json_" ".libs/libjansson.exp" > ".libs/libjansson.expT"
libtool: link: mv -f ".libs/libjansson.expT" ".libs/libjansson.exp"
libtool: link: sed 's|^|_|' < .libs/libjansson.exp > .libs/libjansson-symbols.expsym
libtool: link: gcc -dynamiclib -o .libs/libjansson.4.dylib .libs/dump.o .libs/error.o .libs/hashtable.o .libs/hashtable_seed.o .libs/load.o .libs/memory.o .libs/pack_unpack.o .libs/strbuffer.o .libs/strconv.o .libs/utf.o .libs/value.o -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -install_name /Users/euphorbium/experiments/Rack/lib/libjansson.4.dylib -compatibility_version 15 -current_version 15.0 -Wl,-single_module -Wl,-exported_symbols_list,.libs/libjansson-symbols.expsym
libtool: link: (cd ".libs" && rm -f "libjansson.dylib" && ln -s "libjansson.4.dylib" "libjansson.dylib")
libtool: link: ar cru .libs/libjansson.a dump.o error.o hashtable.o hashtable_seed.o load.o memory.o pack_unpack.o strbuffer.o strconv.o utf.o value.o
libtool: link: ranlib .libs/libjansson.a
libtool: link: ( cd ".libs" && rm -f "libjansson.la" && ln -s "../libjansson.la" "libjansson.la" )
Making all in test
Making all in bin
make[5]: Nothing to be done for `all'.
Making all in suites
Making all in api
make[6]: Nothing to be done for `all'.
make[6]: Nothing to be done for `all-am'.
make[5]: Nothing to be done for `all-am'.
make[4]: Nothing to be done for `all-am'.
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C jansson-2.10 install
Making install in doc
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
Making install in src
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/lib'
/bin/sh ../libtool --mode=install /usr/local/bin/ginstall -c libjansson.la '/Users/euphorbium/experiments/Rack/lib'
libtool: install: /usr/local/bin/ginstall -c .libs/libjansson.4.dylib /Users/euphorbium/experiments/Rack/lib/libjansson.4.dylib
libtool: install: (cd /Users/euphorbium/experiments/Rack/lib && { ln -s -f libjansson.4.dylib libjansson.dylib || { rm -f libjansson.dylib && ln -s libjansson.4.dylib libjansson.dylib; }; })
libtool: install: /usr/local/bin/ginstall -c .libs/libjansson.lai /Users/euphorbium/experiments/Rack/lib/libjansson.la
libtool: install: /usr/local/bin/ginstall -c .libs/libjansson.a /Users/euphorbium/experiments/Rack/lib/libjansson.a
libtool: install: chmod 644 /Users/euphorbium/experiments/Rack/lib/libjansson.a
libtool: install: ranlib /Users/euphorbium/experiments/Rack/lib/libjansson.a
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/include'
/usr/local/bin/ginstall -c -m 644 jansson.h '/Users/euphorbium/experiments/Rack/include'
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/include'
/usr/local/bin/ginstall -c -m 644 jansson_config.h '/Users/euphorbium/experiments/Rack/include'
Making install in test
Making install in bin
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
Making install in suites
Making install in api
make[6]: Nothing to be done for `install-exec-am'.
make[6]: Nothing to be done for `install-data-am'.
make[6]: Nothing to be done for `install-exec-am'.
make[6]: Nothing to be done for `install-data-am'.
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
make[4]: Nothing to be done for `install-exec-am'.
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/lib/pkgconfig'
/usr/local/bin/ginstall -c -m 644 jansson.pc '/Users/euphorbium/experiments/Rack/lib/pkgconfig'
wget -nc http://www.mega-nerd.com/SRC/libsamplerate-0.1.9.tar.gz
--2017-09-22 12:08:17-- http://www.mega-nerd.com/SRC/libsamplerate-0.1.9.tar.gz
Resolving www.mega-nerd.com... 97.107.128.207
Connecting to www.mega-nerd.com|97.107.128.207|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 4336641 (4.1M) [application/x-gzip]
Saving to: 'libsamplerate-0.1.9.tar.gz'
0K .......... .......... .......... .......... .......... 1% 215K 19s
50K .......... .......... .......... .......... .......... 2% 469K 14s
100K .......... .......... .......... .......... .......... 3% 2.15M 10s
150K .......... .......... .......... .......... .......... 4% 619K 9s
200K .......... .......... .......... .......... .......... 5% 1.12M 8s
250K .......... .......... .......... .......... .......... 7% 3.84M 7s
300K .......... .......... .......... .......... .......... 8% 715K 6s
350K .......... .......... .......... .......... .......... 9% 4.34M 6s
400K .......... .......... .......... .......... .......... 10% 3.83M 5s
450K .......... .......... .......... .......... .......... 11% 1.94M 5s
500K .......... .......... .......... .......... .......... 12% 842K 5s
550K .......... .......... .......... .......... .......... 14% 1.31M 4s
600K .......... .......... .......... .......... .......... 15% 4.16M 4s
650K .......... .......... .......... .......... .......... 16% 3.98M 4s
700K .......... .......... .......... .......... .......... 17% 4.30M 3s
750K .......... .......... .......... .......... .......... 18% 1.17M 3s
800K .......... .......... .......... .......... .......... 20% 1.02M 3s
850K .......... .......... .......... .......... .......... 21% 3.02M 3s
900K .......... .......... .......... .......... .......... 22% 3.94M 3s
950K .......... .......... .......... .......... .......... 23% 4.21M 3s
1000K .......... .......... .......... .......... .......... 24% 4.23M 3s
1050K .......... .......... .......... .......... .......... 25% 4.07M 3s
1100K .......... .......... .......... .......... .......... 27% 4.27M 2s
1150K .......... .......... .......... .......... .......... 28% 1.03M 2s
1200K .......... .......... .......... .......... .......... 29% 599K 2s
1250K .......... .......... .......... .......... .......... 30% 4.23M 2s
1300K .......... .......... .......... .......... .......... 31% 4.24M 2s
1350K .......... .......... .......... .......... .......... 33% 3.72M 2s
1400K .......... .......... .......... .......... .......... 34% 4.07M 2s
1450K .......... .......... .......... .......... .......... 35% 3.63M 2s
1500K .......... .......... .......... .......... .......... 36% 3.84M 2s
1550K .......... .......... .......... .......... .......... 37% 1.28M 2s
1600K .......... .......... .......... .......... .......... 38% 2.49M 2s
1650K .......... .......... .......... .......... .......... 40% 4.04M 2s
1700K .......... .......... .......... .......... .......... 41% 3.75M 2s
1750K .......... .......... .......... .......... .......... 42% 3.96M 2s
1800K .......... .......... .......... .......... .......... 43% 3.76M 2s
1850K .......... .......... .......... .......... .......... 44% 4.23M 2s
1900K .......... .......... .......... .......... .......... 46% 3.71M 1s
1950K .......... .......... .......... .......... .......... 47% 4.04M 1s
2000K .......... .......... .......... .......... .......... 48% 2.10M 1s
2050K .......... .......... .......... .......... .......... 49% 2.36M 1s
2100K .......... .......... .......... .......... .......... 50% 4.19M 1s
2150K .......... .......... .......... .......... .......... 51% 3.57M 1s
2200K .......... .......... .......... .......... .......... 53% 3.87M 1s
2250K .......... .......... .......... .......... .......... 54% 3.80M 1s
2300K .......... .......... .......... .......... .......... 55% 3.69M 1s
2350K .......... .......... .......... .......... .......... 56% 4.28M 1s
2400K .......... .......... .......... .......... .......... 57% 3.88M 1s
2450K .......... .......... .......... .......... .......... 59% 3.73M 1s
2500K .......... .......... .......... .......... .......... 60% 2.27M 1s
2550K .......... .......... .......... .......... .......... 61% 4.13M 1s
2600K .......... .......... .......... .......... .......... 62% 3.77M 1s
2650K .......... .......... .......... .......... .......... 63% 3.71M 1s
2700K .......... .......... .......... .......... .......... 64% 3.88M 1s
2750K .......... .......... .......... .......... .......... 66% 4.02M 1s
2800K .......... .......... .......... .......... .......... 67% 2.11M 1s
2850K .......... .......... .......... .......... .......... 68% 4.11M 1s
2900K .......... .......... .......... .......... .......... 69% 4.11M 1s
2950K .......... .......... .......... .......... .......... 70% 3.87M 1s
3000K .......... .......... .......... .......... .......... 72% 3.81M 1s
3050K .......... .......... .......... .......... .......... 73% 4.02M 1s
3100K .......... .......... .......... .......... .......... 74% 2.60M 1s
3150K .......... .......... .......... .......... .......... 75% 4.11M 1s
3200K .......... .......... .......... .......... .......... 76% 3.71M 0s
3250K .......... .......... .......... .......... .......... 77% 4.06M 0s
3300K .......... .......... .......... .......... .......... 79% 2.29M 0s
3350K .......... .......... .......... .......... .......... 80% 4.17M 0s
3400K .......... .......... .......... .......... .......... 81% 4.22M 0s
3450K .......... .......... .......... .......... .......... 82% 3.64M 0s
3500K .......... .......... .......... .......... .......... 83% 4.32M 0s
3550K .......... .......... .......... .......... .......... 85% 3.72M 0s
3600K .......... .......... .......... .......... .......... 86% 3.05M 0s
3650K .......... .......... .......... .......... .......... 87% 4.27M 0s
3700K .......... .......... .......... .......... .......... 88% 3.72M 0s
3750K .......... .......... .......... .......... .......... 89% 4.11M 0s
3800K .......... .......... .......... .......... .......... 90% 3.93M 0s
3850K .......... .......... .......... .......... .......... 92% 3.33M 0s
3900K .......... .......... .......... .......... .......... 93% 4.14M 0s
3950K .......... .......... .......... .......... .......... 94% 3.54M 0s
4000K .......... .......... .......... .......... .......... 95% 4.31M 0s
4050K .......... .......... .......... .......... .......... 96% 4.02M 0s
4100K .......... .......... .......... .......... .......... 97% 1.56M 0s
4150K .......... .......... .......... .......... .......... 99% 2.26M 0s
4200K .......... .......... .......... ..... 100% 3.59M=1.9s
2017-09-22 12:08:19 (2.17 MB/s) - 'libsamplerate-0.1.9.tar.gz' saved [4336641/4336641]
tar xf libsamplerate-0.1.9.tar.gz
cd libsamplerate-0.1.9 && ./configure --prefix="/Users/euphorbium/experiments/Rack"
checking build system type... i386-apple-darwin16.7.0
checking host system type... i386-apple-darwin16.7.0
checking target system type... i386-apple-darwin16.7.0
checking for a BSD-compatible install... /usr/local/bin/ginstall -c
checking whether build environment is sane... yes
/Users/euphorbium/experiments/Rack/dep/libsamplerate-0.1.9/Cfg/missing: Unknown `--is-lightweight' option
Try `/Users/euphorbium/experiments/Rack/dep/libsamplerate-0.1.9/Cfg/missing --help' for more information
configure: WARNING: 'missing' script is too old or missing
checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports nested variables... (cached) yes
checking for gcc... gcc
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 gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking for a sed that does not truncate output... /usr/local/bin/sed
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /usr/local/bin/sed
checking for grep that handles long lines and -e... /usr/local/bin/grep
checking for egrep... /usr/local/bin/grep -E
checking for fgrep... /usr/local/bin/grep -F
checking for ld used by gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
checking if the linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) is GNU ld... no
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 196608
checking how to convert i386-apple-darwin16.7.0 file names to i386-apple-darwin16.7.0 format... func_convert_file_noop
checking how to convert i386-apple-darwin16.7.0 file names to toolchain format... func_convert_file_noop
checking for /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... no
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for dsymutil... dsymutil
checking for nmedit... nmedit
checking for lipo... lipo
checking for otool... otool
checking for otool64... no
checking for -single_module linker flag... yes
checking for -exported_symbols_list linker flag... yes
checking for -force_load linker flag... yes
checking how to run the C preprocessor... gcc -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 for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... yes
checking for gcc option to produce PIC... -fno-common -DPIC
checking if gcc PIC flag -fno-common -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... darwin16.7.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
checking if the linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) is GNU ld... no
checking whether the g++ linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fno-common -DPIC
checking if g++ PIC flag -fno-common -DPIC works... yes
checking if g++ static flag -static works... no
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... darwin16.7.0 dyld
checking how to hardcode library paths into programs... immediate
checking for windres... no
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) yes
checking whether ln -s works... yes
checking for ANSI C header files... (cached) yes
checking for stdint.h... (cached) yes
checking sys/times.h usability... yes
checking sys/times.h presence... yes
checking for sys/times.h... yes
checking size of int... 4
checking size of long... 8
checking size of float... 4
checking size of double... 8
checking processor byte ordering... little
checking for malloc... yes
checking for calloc... yes
checking for free... yes
checking for memcpy... yes
checking for memmove... yes
checking for alarm... yes
checking for signal... yes
checking for floor in -lm... yes
checking for floor... yes
checking for ceil... yes
checking for fmod... yes
checking for SIGALRM... yes
checking for lrint... yes
checking for lrintf... yes
checking processor clipping capabilities... none
checking for pkg-config... /usr/local/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for SNDFILE... no
checking alsa/asoundlib.h usability... no
checking alsa/asoundlib.h presence... no
checking for alsa/asoundlib.h... no
checking for FFTW3... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating M4/Makefile
config.status: creating src/Version_script
config.status: creating Win32/Makefile
config.status: creating Win32/Makefile.mingw
config.status: creating src/Makefile
config.status: creating examples/Makefile
config.status: creating tests/Makefile
config.status: creating doc/Makefile
config.status: creating libsamplerate.spec
config.status: creating samplerate.pc
config.status: creating src/config.h
config.status: executing depfiles commands
config.status: executing libtool commands
-=-=-=-=-=-=-=-=-=-= Configuration Complete =-=-=-=-=-=-=-=-=-=-=-
Configuration summary :
Version : ..................... 0.1.9
Host CPU : .................... i386
Host Vendor : ................. apple
Host OS : ..................... darwin16.7.0
-e Tools :
Compiler is GCC : ............. yes
GCC major version : ........... 4
Extra tools required for testing and examples :
Have FFTW : ................... no
Have libsndfile : ............. no
Have ALSA : ................... no
Installation directories :
Library directory : ........... /Users/euphorbium/experiments/Rack/lib
Program directory : ........... /Users/euphorbium/experiments/Rack/bin
Pkgconfig directory : ......... /Users/euphorbium/experiments/Rack/lib/pkgconfig
Compiling some other packages against libsamplerate may require
-e the addition of "/Users/euphorbium/experiments/Rack/lib/pkgconfig" to the
-e PKG_CONFIG_PATH environment variable.
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C libsamplerate-0.1.9
Making all in M4
make[3]: Nothing to be done for `all'.
Making all in src
/Applications/Xcode.app/Contents/Developer/usr/bin/make all-am
CC samplerate.lo
CC src_sinc.lo
CC src_zoh.lo
CC src_linear.lo
CCLD libsamplerate.la
Making all in doc
make[3]: Nothing to be done for `all'.
Making all in examples
CC sndfile-resample.o
CCLD sndfile-resample
CC varispeed-play.o
CC audio_out.o
CCLD varispeed-play
CC timewarp-file.o
CCLD timewarp-file
Making all in tests
CC misc_test.o
CC util.o
CCLD misc_test
CC termination_test.o
CCLD termination_test
CC simple_test.o
CCLD simple_test
CC callback_test-callback_test.o
CC callback_test-util.o
CCLD callback_test
CC reset_test.o
CCLD reset_test
CC multi_channel_test-multi_channel_test.o
CC multi_channel_test-util.o
CC multi_channel_test-calc_snr.o
CCLD multi_channel_test
CC snr_bw_test-snr_bw_test.o
CC snr_bw_test-calc_snr.o
CC snr_bw_test-util.o
CCLD snr_bw_test
CC float_short_test.o
CCLD float_short_test
CC varispeed_test-varispeed_test.o
CC varispeed_test-util.o
CC varispeed_test-calc_snr.o
CCLD varispeed_test
CC callback_hang_test.o
CCLD callback_hang_test
CC src_evaluate-src-evaluate.o
CC src_evaluate-calc_snr.o
CC src_evaluate-util.o
CCLD src-evaluate
CC throughput_test-throughput_test.o
CC throughput_test-util.o
CC throughput_test-calc_snr.o
CCLD throughput_test
CC multichan_throughput_test-multichan_throughput_test.o
CC multichan_throughput_test-util.o
CC multichan_throughput_test-calc_snr.o
CCLD multichan_throughput_test
CC downsample_test.o
CCLD downsample_test
make[3]: Nothing to be done for `all-am'.
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C libsamplerate-0.1.9 install
Making install in M4
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
Making install in src
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/lib'
/bin/sh ../libtool --mode=install /usr/local/bin/ginstall -c libsamplerate.la '/Users/euphorbium/experiments/Rack/lib'
libtool: install: /usr/local/bin/ginstall -c .libs/libsamplerate.0.dylib /Users/euphorbium/experiments/Rack/lib/libsamplerate.0.dylib
libtool: install: (cd /Users/euphorbium/experiments/Rack/lib && { ln -s -f libsamplerate.0.dylib libsamplerate.dylib || { rm -f libsamplerate.dylib && ln -s libsamplerate.0.dylib libsamplerate.dylib; }; })
libtool: install: /usr/local/bin/ginstall -c .libs/libsamplerate.lai /Users/euphorbium/experiments/Rack/lib/libsamplerate.la
libtool: install: /usr/local/bin/ginstall -c .libs/libsamplerate.a /Users/euphorbium/experiments/Rack/lib/libsamplerate.a
libtool: install: chmod 644 /Users/euphorbium/experiments/Rack/lib/libsamplerate.a
libtool: install: ranlib /Users/euphorbium/experiments/Rack/lib/libsamplerate.a
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/include'
/usr/local/bin/ginstall -c -m 644 samplerate.h '/Users/euphorbium/experiments/Rack/include'
Making install in doc
make[4]: Nothing to be done for `install-exec-am'.
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/share/doc/libsamplerate0-dev/html'
/usr/local/bin/ginstall -c -m 644 SRC.png SRC.css index.html license.html history.html download.html lists.html quality.html win32.html faq.html api.html api_simple.html api_callback.html api_full.html api_misc.html '/Users/euphorbium/experiments/Rack/share/doc/libsamplerate0-dev/html'
Making install in examples
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/bin'
/bin/sh ../libtool --mode=install /usr/local/bin/ginstall -c sndfile-resample '/Users/euphorbium/experiments/Rack/bin'
libtool: install: /usr/local/bin/ginstall -c .libs/sndfile-resample /Users/euphorbium/experiments/Rack/bin/sndfile-resample
make[4]: Nothing to be done for `install-data-am'.
Making install in tests
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Nothing to be done for `install-exec-am'.
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/lib/pkgconfig'
/usr/local/bin/ginstall -c -m 644 samplerate.pc '/Users/euphorbium/experiments/Rack/lib/pkgconfig'
wget -nc https://github.com/curl/curl/files/1101227/curl-7.54.1.tar.gz
--2017-09-22 12:08:42-- https://github.com/curl/curl/files/1101227/curl-7.54.1.tar.gz
Resolving github.com... 192.30.253.112, 192.30.253.113
Connecting to github.com|192.30.253.112|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://github-production-repository-file-5c1aeb.s3.amazonaws.com/569041/1101227?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20170922%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20170922T090843Z&X-Amz-Expires=300&X-Amz-Signature=0866914cee14c1a3520461fdec089ad2179bdceb55848c6f7a81bc58eee7db91&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3Bfilename%3Dcurl-7.54.1.tar.gz&response-content-type=application%2Fgzip [following]
--2017-09-22 12:08:43-- https://github-production-repository-file-5c1aeb.s3.amazonaws.com/569041/1101227?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20170922%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20170922T090843Z&X-Amz-Expires=300&X-Amz-Signature=0866914cee14c1a3520461fdec089ad2179bdceb55848c6f7a81bc58eee7db91&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3Bfilename%3Dcurl-7.54.1.tar.gz&response-content-type=application%2Fgzip
Resolving github-production-repository-file-5c1aeb.s3.amazonaws.com... 52.216.226.200
Connecting to github-production-repository-file-5c1aeb.s3.amazonaws.com|52.216.226.200|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 3520993 (3.4M) [application/gzip]
Saving to: 'curl-7.54.1.tar.gz'
0K .......... .......... .......... .......... .......... 1% 207K 16s
50K .......... .......... .......... .......... .......... 2% 412K 12s
100K .......... .......... .......... .......... .......... 4% 424K 11s
150K .......... .......... .......... .......... .......... 5% 3.92M 8s
200K .......... .......... .......... .......... .......... 7% 457K 8s
250K .......... .......... .......... .......... .......... 8% 2.79M 6s
300K .......... .......... .......... .......... .......... 10% 3.35M 6s
350K .......... .......... .......... .......... .......... 11% 650K 5s
400K .......... .......... .......... .......... .......... 13% 1.19M 5s
450K .......... .......... .......... .......... .......... 14% 4.36M 4s
500K .......... .......... .......... .......... .......... 15% 4.09M 4s
550K .......... .......... .......... .......... .......... 17% 3.78M 4s
600K .......... .......... .......... .......... .......... 18% 1.12M 4s
650K .......... .......... .......... .......... .......... 20% 894K 3s
700K .......... .......... .......... .......... .......... 21% 3.56M 3s
750K .......... .......... .......... .......... .......... 23% 3.55M 3s
800K .......... .......... .......... .......... .......... 24% 4.16M 3s
850K .......... .......... .......... .......... .......... 26% 5.36M 3s
900K .......... .......... .......... .......... .......... 27% 2.61M 3s
950K .......... .......... .......... .......... .......... 29% 1003K 2s
1000K .......... .......... .......... .......... .......... 30% 2.42M 2s
1050K .......... .......... .......... .......... .......... 31% 3.82M 2s
1100K .......... .......... .......... .......... .......... 33% 3.91M 2s
1150K .......... .......... .......... .......... .......... 34% 4.15M 2s
1200K .......... .......... .......... .......... .......... 36% 3.54M 2s
1250K .......... .......... .......... .......... .......... 37% 3.88M 2s
1300K .......... .......... .......... .......... .......... 39% 1.20M 2s
1350K .......... .......... .......... .......... .......... 40% 2.70M 2s
1400K .......... .......... .......... .......... .......... 42% 2.14M 2s
1450K .......... .......... .......... .......... .......... 43% 3.11M 2s
1500K .......... .......... .......... .......... .......... 45% 4.00M 1s
1550K .......... .......... .......... .......... .......... 46% 3.99M 1s
1600K .......... .......... .......... .......... .......... 47% 3.72M 1s
1650K .......... .......... .......... .......... .......... 49% 3.53M 1s
1700K .......... .......... .......... .......... .......... 50% 4.10M 1s
1750K .......... .......... .......... .......... .......... 52% 2.35M 1s
1800K .......... .......... .......... .......... .......... 53% 3.70M 1s
1850K .......... .......... .......... .......... .......... 55% 1.89M 1s
1900K .......... .......... .......... .......... .......... 56% 3.55M 1s
1950K .......... .......... .......... .......... .......... 58% 3.88M 1s
2000K .......... .......... .......... .......... .......... 59% 3.87M 1s
2050K .......... .......... .......... .......... .......... 61% 4.04M 1s
2100K .......... .......... .......... .......... .......... 62% 3.94M 1s
2150K .......... .......... .......... .......... .......... 63% 4.10M 1s
2200K .......... .......... .......... .......... .......... 65% 3.04M 1s
2250K .......... .......... .......... .......... .......... 66% 3.66M 1s
2300K .......... .......... .......... .......... .......... 68% 3.59M 1s
2350K .......... .......... .......... .......... .......... 69% 2.63M 1s
2400K .......... .......... .......... .......... .......... 71% 4.07M 1s
2450K .......... .......... .......... .......... .......... 72% 3.69M 1s
2500K .......... .......... .......... .......... .......... 74% 3.06M 1s
2550K .......... .......... .......... .......... .......... 75% 6.32M 0s
2600K .......... .......... .......... .......... .......... 77% 3.66M 0s
2650K .......... .......... .......... .......... .......... 78% 3.37M 0s
2700K .......... .......... .......... .......... .......... 79% 4.03M 0s
2750K .......... .......... .......... .......... .......... 81% 4.12M 0s
2800K .......... .......... .......... .......... .......... 82% 3.96M 0s
2850K .......... .......... .......... .......... .......... 84% 3.87M 0s
2900K .......... .......... .......... .......... .......... 85% 4.03M 0s
2950K .......... .......... .......... .......... .......... 87% 3.68M 0s
3000K .......... .......... .......... .......... .......... 88% 2.69M 0s
3050K .......... .......... .......... .......... .......... 90% 4.04M 0s
3100K .......... .......... .......... .......... .......... 91% 3.91M 0s
3150K .......... .......... .......... .......... .......... 93% 4.06M 0s
3200K .......... .......... .......... .......... .......... 94% 3.88M 0s
3250K .......... .......... .......... .......... .......... 95% 4.11M 0s
3300K .......... .......... .......... .......... .......... 97% 3.59M 0s
3350K .......... .......... .......... .......... .......... 98% 3.99M 0s
3400K .......... .......... .......... ........ 100% 6.10M=1.7s
2017-09-22 12:08:45 (1.96 MB/s) - 'curl-7.54.1.tar.gz' saved [3520993/3520993]
tar xf curl-7.54.1.tar.gz
cd curl-7.54.1 && ./configure --prefix="/Users/euphorbium/experiments/Rack" \
--disable-ftp --disable-file --disable-ldap --disable-ldaps --disable-rtsp --disable-proxy --disable-dict --disable-telnet --disable-tftp --disable-pop3 --disable-imap --disable-smb --disable-smtp --disable-gopher --disable-manual \
--without-zlib --without-ssl --without-ca-bundle --without-ca-path --without-ca-fallback --without-libpsl --without-libmetalink --without-libssh2 --without-librtmp --without-winidn --without-libidn2 --without-nghttp2
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether make supports nested variables... yes
checking whether to enable debug build options... no
checking whether to enable compiler optimizer... (assumed) yes
checking whether to enable strict compiler warnings... no
checking whether to enable compiler warnings as errors... no
checking whether to enable curl debug memory tracking... no
checking whether to enable hiding of library internal symbols... yes
checking whether to enable c-ares for DNS lookups... no
checking whether to disable dependency on -lrt... (assumed no)
checking for path separator... :
checking for a sed that does not truncate output... /usr/local/bin/sed
checking whether to build with code coverage support... no
checking for grep... /usr/local/bin/grep
checking for egrep... /usr/local/bin/grep -E
checking for ar... /usr/bin/ar
checking for a BSD-compatible install... /usr/local/bin/ginstall -c
checking for gcc... gcc
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 gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking how to run the C preprocessor... gcc -E
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking curl version... 7.54.1
checking build system type... x86_64-apple-darwin16.7.0
checking host system type... x86_64-apple-darwin16.7.0
checking for sys/types.h... yes
checking for stdint.h... yes
checking for inttypes.h... yes
checking for grep that handles long lines and -e... (cached) /usr/local/bin/grep
checking for egrep... /usr/local/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... (cached) 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... (cached) yes
checking for stdint.h... (cached) yes
checking for unistd.h... yes
checking if cpp -P is needed... no
checking size of long... 8
checking size of void*... 8
checking for 64-bit curl_off_t data type... long
checking size of curl_off_t... 8
checking formatting string directive for curl_off_t... "ld"
checking formatting string directive for unsigned curl_off_t... "lu"
checking constant suffix string for curl_off_t... L
checking constant suffix string for unsigned curl_off_t... UL
checking if OS is AIX (to define _ALL_SOURCE)... no
checking if _THREAD_SAFE is already defined... no
checking if _THREAD_SAFE is actually needed... no
checking if _THREAD_SAFE is onwards defined... no
checking if _REENTRANT is already defined... no
checking if _REENTRANT is actually needed... no
checking if _REENTRANT is onwards defined... no
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /usr/local/bin/sed
checking for fgrep... /usr/local/bin/grep -F
checking for ld used by gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
checking if the linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) is GNU ld... no
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 196608
checking how to convert x86_64-apple-darwin16.7.0 file names to x86_64-apple-darwin16.7.0 format... func_convert_file_noop
checking how to convert x86_64-apple-darwin16.7.0 file names to toolchain format... func_convert_file_noop
checking for /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... no
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for dsymutil... dsymutil
checking for nmedit... nmedit
checking for lipo... lipo
checking for otool... otool
checking for otool64... no
checking for -single_module linker flag... yes
checking for -exported_symbols_list linker flag... yes
checking for -force_load linker flag... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... yes
checking for gcc option to produce PIC... -fno-common -DPIC
checking if gcc PIC flag -fno-common -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... darwin16.7.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking whether to build shared libraries with -version-info... yes
checking whether to build shared libraries with -no-undefined... no
checking whether to build shared libraries with -mimpure-text... no
checking whether to build shared libraries with PIC... yes
checking whether to build static libraries with PIC... no
checking whether to build shared libraries only... no
checking whether to build static libraries only... no
checking for inline... inline
checking if compiler is DEC/Compaq/HP C... no
checking if compiler is HP-UX C... no
checking if compiler is IBM C... no
checking if compiler is Intel C... no
checking if compiler is clang... yes
checking if compiler is GNU C... no
checking if compiler is LCC... no
checking if compiler is SGI MIPSpro C... no
checking if compiler is SGI MIPS C... no
checking if compiler is SunPro C... no
checking if compiler is Tiny C... no
checking if compiler is Watcom C... no
checking if compiler accepts some basic options... yes
configure: compiler options added: -Qunused-arguments
checking if compiler accepts debug disabling options... yes
configure: compiler options added:
checking if compiler optimizer assumed setting might be used... yes
checking if compiler accepts optimizer enabling options... yes
configure: compiler options added: -Os
checking if compiler halts on compilation errors... yes
checking if compiler halts on negative sized arrays... yes
checking if compiler halts on function prototype mismatch... yes
checking if compiler supports hiding library internal symbols... yes
checking for windows.h... no
checking whether build target is a native Windows one... no
checking whether build target supports WIN32 file API... no
checking for good-to-use Mac CFLAGS... yes
checking for *version-min in CFLAGS... set by user
checking whether gcc accepts -Werror=partial-availability... yes
checking whether to support http... yes
checking whether to support ftp... no
checking whether to support file... no
checking whether to support ldap... no
checking whether to support ldaps... no
checking whether to support rtsp... no
checking whether to support proxies... no
checking whether to support dict... no
checking whether to support telnet... no
checking whether to support tftp... no
checking whether to support pop3... no
checking whether to support imap... no
checking whether to support smb... no
checking whether to support smtp... no
checking whether to support gopher... no
checking whether to provide built-in manual... no
checking whether to enable generation of C code... yes
checking whether to use libgcc... no
checking if X/Open network library is required... no
checking for gethostbyname... yes
checking for windows.h... (cached) no
checking for winsock.h... (cached) no
checking for winsock2.h... (cached) no
checking for connect in libraries... yes
checking whether time.h and sys/time.h may both be included... yes
checking for sys/types.h... (cached) yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking for monotonic clock_gettime... no
configure: WARNING: zlib disabled
checking whether to enable IPv6... yes
checking if struct sockaddr_in6 has sin6_scope_id member... yes
checking if argv can be written to... yes
checking if GSS-API support is requested... no
checking whether to enable Windows native SSL/TLS (Windows native builds only)... no
checking whether to enable Apple OS native SSL/TLS... no
checking for ssl_version in -laxtls... no
configure: WARNING: SSL disabled, you will not be able to use HTTPS, FTPS, NTLM and more.
configure: WARNING: Use --with-ssl, --with-gnutls, --with-polarssl, --with-cyassl, --with-nss, --with-axtls, --with-winssl, or --with-darwinssl to address this.
checking default CA cert bundle/path... no
checking whether to use builtin CA store of SSL library... no
checking whether versioned symbols are wanted... no
checking whether to enable Windows native IDN (Windows native builds only)... no
checking whether to build with libidn2... no
checking for ANSI C header files... (cached) yes
checking for malloc.h... no
checking for memory.h... yes
checking for sys/types.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for sys/select.h... yes
checking for sys/socket.h... yes
checking for sys/ioctl.h... yes
checking for sys/uio.h... yes
checking for assert.h... yes
checking for unistd.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for limits.h... yes
checking for arpa/inet.h... yes
checking for net/if.h... yes
checking for netinet/in.h... yes
checking for sys/un.h... yes
checking for netinet/tcp.h... yes
checking for netdb.h... yes
checking for sys/sockio.h... yes
checking for sys/stat.h... (cached) yes
checking for sys/param.h... yes
checking for termios.h... yes
checking for termio.h... no
checking for sgtty.h... yes
checking for fcntl.h... yes
checking for alloca.h... yes
checking for time.h... (cached) yes
checking for io.h... no
checking for pwd.h... yes
checking for utime.h... yes
checking for sys/utime.h... no
checking for sys/poll.h... yes
checking for poll.h... yes
checking for socket.h... no
checking for sys/resource.h... yes
checking for libgen.h... yes
checking for locale.h... yes
checking for errno.h... yes
checking for stdbool.h... yes
checking for arpa/tftp.h... yes
checking for sys/filio.h... yes
checking for sys/wait.h... yes
checking for setjmp.h... yes
checking for an ANSI C-conforming const... yes
checking for compiler support of C99 variadic macro style... yes
checking for compiler support of old gcc variadic macro style... yes
checking for size_t... yes
checking whether time.h and sys/time.h may both be included... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for time.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for struct timeval... yes
checking run-time libs availability... fine
checking size of size_t... 8
checking size of long... (cached) 8
checking size of int... 4
checking size of short... 2
checking size of time_t... 8
checking size of off_t... 8
checking for long long... yes
checking if numberLL works... yes
checking for ssize_t... yes
checking for bool... yes
checking for windows.h... (cached) no
checking for winsock2.h... (cached) no
checking for ws2tcpip.h... (cached) no
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for curl_socklen_t data type... socklen_t
checking size of curl_socklen_t... 4
checking for sys/types.h... (cached) yes
checking for poll.h... (cached) yes
checking for sys/poll.h... (cached) yes
checking for in_addr_t... yes
checking for struct sockaddr_storage... yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for sig_atomic_t... yes
checking if sig_atomic_t is already defined as volatile... no
checking return type of signal handlers... void
checking for sys/select.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for select... yes
checking types of args and return type for select... int,fd_set *,struct timeval *,int
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for recv... yes
checking types of args and return type for recv... int,void *,size_t,int,ssize_t
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for send... yes
checking types of args and return type for send... int,const void *,size_t,int,ssize_t
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for MSG_NOSIGNAL... no
checking for sys/types.h... (cached) yes
checking for unistd.h... (cached) yes
checking if alarm can be linked... yes
checking if alarm is prototyped... yes
checking if alarm is compilable... yes
checking if alarm usage allowed... yes
checking if alarm might be used... yes
checking for sys/types.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for libgen.h... (cached) yes
checking if basename can be linked... yes
checking if basename is prototyped... yes
checking if basename is compilable... yes
checking if basename usage allowed... yes
checking if basename might be used... yes
checking for sys/types.h... (cached) yes
checking for socket.h... (cached) no
checking if closesocket can be linked... no
checking if closesocket might be used... no
checking if CloseSocket can be linked... no
checking if CloseSocket might be used... no
checking if connect can be linked... yes
checking if connect is prototyped... yes
checking if connect is compilable... yes
checking if connect usage allowed... yes
checking if connect might be used... yes
checking for sys/types.h... (cached) yes
checking for unistd.h... (cached) yes
checking for fcntl.h... (cached) yes
checking if fcntl can be linked... yes
checking if fcntl is prototyped... yes
checking if fcntl is compilable... yes
checking if fcntl usage allowed... yes
checking if fcntl might be used... yes
checking if fcntl O_NONBLOCK is compilable... yes
checking if fcntl O_NONBLOCK usage allowed... yes
checking if fcntl O_NONBLOCK might be used... yes
checking for sys/types.h... (cached) yes
checking for stdio.h... yes
checking if fdopen can be linked... yes
checking if fdopen is prototyped... yes
checking if fdopen is compilable... yes
checking if fdopen usage allowed... yes
checking if fdopen might be used... yes
checking for sys/types.h... (cached) yes
checking for netdb.h... (cached) yes
checking if freeaddrinfo can be linked... yes
checking if freeaddrinfo is prototyped... yes
checking if freeaddrinfo is compilable... yes
checking if freeaddrinfo usage allowed... yes
checking if freeaddrinfo might be used... yes
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for netinet/in.h... (cached) yes
checking for ifaddrs.h... yes
checking if freeifaddrs can be linked... yes
checking if freeifaddrs is prototyped... yes
checking if freeifaddrs is compilable... yes
checking if freeifaddrs usage allowed... yes
checking if freeifaddrs might be used... yes
checking for sys/types.h... (cached) yes
checking for sys/xattr.h... yes
checking if fsetxattr can be linked... yes
checking if fsetxattr is prototyped... yes
checking if fsetxattr takes 5 args.... no
checking if fsetxattr takes 6 args.... yes
checking if fsetxattr is compilable... yes
checking if fsetxattr usage allowed... yes
checking if fsetxattr might be used... yes
checking if ftruncate can be linked... yes
checking if ftruncate is prototyped... yes
checking if ftruncate is compilable... yes
checking if ftruncate usage allowed... yes
checking if ftruncate might be used... yes
checking for sys/types.h... (cached) yes
checking for stdlib.h... (cached) yes
checking if getaddrinfo can be linked... yes
checking if getaddrinfo is prototyped... yes
checking if getaddrinfo is compilable... yes
checking if getaddrinfo seems to work... yes
checking if getaddrinfo usage allowed... yes
checking if getaddrinfo might be used... yes
checking if getaddrinfo is threadsafe... yes
checking if gai_strerror can be linked... yes
checking if gai_strerror is prototyped... yes
checking if gai_strerror is compilable... yes
checking if gai_strerror usage allowed... yes
checking if gai_strerror might be used... yes
checking if gethostbyaddr can be linked... yes
checking if gethostbyaddr is prototyped... yes
checking if gethostbyaddr is compilable... yes
checking if gethostbyaddr usage allowed... yes
checking if gethostbyaddr might be used... yes
checking if gethostbyaddr_r can be linked... no
checking if gethostbyaddr_r might be used... no
checking if gethostbyname can be linked... yes
checking if gethostbyname is prototyped... yes
checking if gethostbyname is compilable... yes
checking if gethostbyname usage allowed... yes
checking if gethostbyname might be used... yes
checking if gethostbyname_r can be linked... no
checking if gethostbyname_r might be used... no
checking if gethostname can be linked... yes
checking if gethostname is prototyped... yes
checking if gethostname is compilable... yes
checking for gethostname arg 2 data type... size_t
checking if gethostname usage allowed... yes
checking if gethostname might be used... yes
checking if getifaddrs can be linked... yes
checking if getifaddrs is prototyped... yes
checking if getifaddrs is compilable... yes
checking if getifaddrs seems to work... yes
checking if getifaddrs usage allowed... yes
checking if getifaddrs might be used... yes
checking if getservbyport_r can be linked... no
checking if getservbyport_r might be used... no
checking for sys/types.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for time.h... (cached) yes
checking if gmtime_r can be linked... yes
checking if gmtime_r is prototyped... yes
checking if gmtime_r is compilable... yes
checking if gmtime_r seems to work... yes
checking if gmtime_r usage allowed... yes
checking if gmtime_r might be used... yes
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for netinet/in.h... (cached) yes
checking for arpa/inet.h... (cached) yes
checking if inet_ntoa_r can be linked... no
checking if inet_ntoa_r might be used... no
checking if inet_ntop can be linked... yes
checking if inet_ntop is prototyped... yes
checking if inet_ntop is compilable... yes
checking if inet_ntop seems to work... yes
checking if inet_ntop usage allowed... yes
checking if inet_ntop might be used... yes
checking if inet_pton can be linked... yes
checking if inet_pton is prototyped... yes
checking if inet_pton is compilable... yes
checking if inet_pton seems to work... yes
checking if inet_pton usage allowed... yes
checking if inet_pton might be used... yes
checking for sys/types.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/ioctl.h... (cached) yes
checking for stropts.h... no
checking if ioctl can be linked... yes
checking if ioctl is prototyped... yes
checking if ioctl is compilable... yes
checking if ioctl usage allowed... yes
checking if ioctl might be used... yes
checking if ioctl FIONBIO is compilable... yes
checking if ioctl FIONBIO usage allowed... yes
checking if ioctl FIONBIO might be used... yes
checking if ioctl SIOCGIFADDR is compilable... yes
checking if ioctl SIOCGIFADDR usage allowed... yes
checking if ioctl SIOCGIFADDR might be used... yes
checking if ioctlsocket can be linked... no
checking if ioctlsocket might be used... no
checking if IoctlSocket can be linked... no
checking if IoctlSocket might be used... no
checking if localtime_r can be linked... yes
checking if localtime_r is prototyped... yes
checking if localtime_r is compilable... yes
checking if localtime_r seems to work... yes
checking if localtime_r usage allowed... yes
checking if localtime_r might be used... yes
checking if memrchr can be linked... no
checking if memrchr seems a macro... no
checking if memrchr might be used... no
checking if poll can be linked... yes
checking if poll is prototyped... yes
checking if poll is compilable... yes
checking if poll seems to work... yes
checking if poll usage allowed... no
checking if poll might be used... no
checking if setsockopt can be linked... yes
checking if setsockopt is prototyped... yes
checking if setsockopt is compilable... yes
checking if setsockopt usage allowed... yes
checking if setsockopt might be used... yes
checking if setsockopt SO_NONBLOCK is compilable... no
checking if setsockopt SO_NONBLOCK might be used... no
checking for sys/types.h... (cached) yes
checking for signal.h... (cached) yes
checking if sigaction can be linked... yes
checking if sigaction is prototyped... yes
checking if sigaction is compilable... yes
checking if sigaction usage allowed... yes
checking if sigaction might be used... yes
checking if siginterrupt can be linked... yes
checking if siginterrupt is prototyped... yes
checking if siginterrupt is compilable... yes
checking if siginterrupt usage allowed... yes
checking if siginterrupt might be used... yes
checking if signal can be linked... yes
checking if signal is prototyped... yes
checking if signal is compilable... yes
checking if signal usage allowed... yes
checking if signal might be used... yes
checking for sys/types.h... (cached) yes
checking for setjmp.h... (cached) yes
checking if sigsetjmp can be linked... yes
checking if sigsetjmp is prototyped... yes
checking if sigsetjmp is compilable... yes
checking if sigsetjmp usage allowed... yes
checking if sigsetjmp might be used... yes
checking if socket can be linked... yes
checking if socket is prototyped... yes
checking if socket is compilable... yes
checking if socket usage allowed... yes
checking if socket might be used... yes
checking if socketpair can be linked... yes
checking if socketpair is prototyped... yes
checking if socketpair is compilable... yes
checking if socketpair usage allowed... yes
checking if socketpair might be used... yes
checking if strcasecmp can be linked... yes
checking if strcasecmp is prototyped... yes
checking if strcasecmp is compilable... yes
checking if strcasecmp usage allowed... yes
checking if strcasecmp might be used... yes
checking if strcmpi can be linked... no
checking if strcmpi might be used... no
checking if strdup can be linked... yes
checking if strdup is prototyped... yes
checking if strdup is compilable... yes
checking if strdup usage allowed... yes
checking if strdup might be used... yes
checking if strerror_r can be linked... yes
checking if strerror_r is prototyped... yes
checking if strerror_r is compilable... yes
checking if strerror_r is glibc like... no
checking if strerror_r is POSIX like... yes
checking if strerror_r seems to work... yes
checking if strerror_r usage allowed... yes
checking if strerror_r might be used... yes
checking if stricmp can be linked... no
checking if stricmp might be used... no
checking if strncasecmp can be linked... yes
checking if strncasecmp is prototyped... yes
checking if strncasecmp is compilable... yes
checking if strncasecmp usage allowed... yes
checking if strncasecmp might be used... yes
checking if strncmpi can be linked... no
checking if strncmpi might be used... no
checking if strnicmp can be linked... no
checking if strnicmp might be used... no
checking if strstr can be linked... yes
checking if strstr is prototyped... yes
checking if strstr is compilable... yes
checking if strstr usage allowed... yes
checking if strstr might be used... yes
checking if strtok_r can be linked... yes
checking if strtok_r is prototyped... yes
checking if strtok_r is compilable... yes
checking if strtok_r usage allowed... yes
checking if strtok_r might be used... yes
checking if strtoll can be linked... yes
checking if strtoll is prototyped... yes
checking if strtoll is compilable... yes
checking if strtoll usage allowed... yes
checking if strtoll might be used... yes
checking for sys/types.h... (cached) yes
checking for sys/uio.h... (cached) yes
checking if writev can be linked... yes
checking if writev is prototyped... yes
checking if writev is compilable... yes
checking if writev usage allowed... yes
checking if writev might be used... yes
checking for fork... yes
checking for geteuid... yes
checking for getpass_r... no
checking deeper for getpass_r... but still no
checking for getppid... yes
checking for getprotobyname... yes
checking for getpwuid... yes
checking for getpwuid_r... yes
checking for getrlimit... yes
checking for gettimeofday... yes
checking for if_nametoindex... yes
checking for inet_addr... yes
checking for perror... yes
checking for pipe... yes
checking for setlocale... yes
checking for setmode... yes
checking for setrlimit... yes
checking for uname... yes
checking for utime... yes
checking for utimes... yes
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for netdb.h... (cached) yes
checking for getnameinfo... yes
checking types of arguments for getnameinfo... const struct sockaddr *,socklen_t,socklen_t,int
checking for stdio.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for netdb.h... (cached) yes
checking for netinet/in.h... (cached) yes
checking for arpa/inet.h... (cached) yes
checking for working NI_WITHSCOPEID... no
checking how to set a socket into non-blocking mode... fcntl O_NONBLOCK
checking for perl... /usr/bin/perl
checking for gnroff... no
checking for nroff... /usr/bin/nroff
checking how to use *nroff to get plain text from man pages... -man
checking whether to enable the threaded resolver... no
checking whether to use POSIX threads for threaded resolver... auto
checking whether to enable verbose strings... yes
checking whether to enable SSPI support (Windows native builds only)... no
checking whether to enable cryptographic authentication methods... yes
checking whether to enable NTLM delegation to winbind's helper... no
checking whether to enable TLS-SRP authentication... yes
checking whether to enable Unix domain sockets... auto
checking for struct sockaddr_un.sun_path... yes
checking whether to enable support for cookies... yes
checking whether hiding of library internal symbols will actually happen... yes
checking whether to enforce SONAME bump... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating docs/Makefile
config.status: creating docs/examples/Makefile
config.status: creating docs/libcurl/Makefile
config.status: creating docs/libcurl/opts/Makefile
config.status: creating docs/cmdline-opts/Makefile
config.status: creating include/Makefile
config.status: creating include/curl/Makefile
config.status: creating src/Makefile
config.status: creating lib/Makefile
config.status: creating scripts/Makefile
config.status: creating lib/libcurl.vers
config.status: creating tests/Makefile
config.status: creating tests/certs/Makefile
config.status: creating tests/certs/scripts/Makefile
config.status: creating tests/data/Makefile
config.status: creating tests/server/Makefile
config.status: creating tests/libtest/Makefile
config.status: creating tests/unit/Makefile
config.status: creating packages/Makefile
config.status: creating packages/Win32/Makefile
config.status: creating packages/Win32/cygwin/Makefile
config.status: creating packages/Linux/Makefile
config.status: creating packages/Linux/RPM/Makefile
config.status: creating packages/Linux/RPM/curl.spec
config.status: creating packages/Linux/RPM/curl-ssl.spec
config.status: creating packages/Solaris/Makefile
config.status: creating packages/EPM/curl.list
config.status: creating packages/EPM/Makefile
config.status: creating packages/vms/Makefile
config.status: creating packages/AIX/Makefile
config.status: creating packages/AIX/RPM/Makefile
config.status: creating packages/AIX/RPM/curl.spec
config.status: creating curl-config
config.status: creating libcurl.pc
config.status: creating lib/curl_config.h
config.status: creating include/curl/curlbuild.h
config.status: executing depfiles commands
config.status: executing libtool commands
configure: amending lib/Makefile
configure: amending src/Makefile
configure: amending tests/unit/Makefile
configure: amending tests/server/Makefile
configure: amending tests/libtest/Makefile
configure: amending docs/examples/Makefile
configure: Configured to build curl/libcurl:
curl version: 7.54.1
Host setup: x86_64-apple-darwin16.7.0
Install prefix: /Users/euphorbium/experiments/Rack
Compiler: gcc
SSL support: no (--with-{ssl,gnutls,nss,polarssl,mbedtls,cyassl,axtls,winssl,darwinssl} )
SSH support: no (--with-libssh2)
zlib support: no (--with-zlib)
GSS-API support: no (--with-gssapi)
TLS-SRP support: no (--enable-tls-srp)
resolver: default (--enable-ares / --enable-threaded-resolver)
IPv6 support: enabled
Unix sockets support: enabled
IDN support: no (--with-{libidn2,winidn})
Build libcurl: Shared=yes, Static=yes
Built-in manual: no (--enable-manual)
--libcurl option: enabled (--disable-libcurl-option)
Verbose errors: enabled (--disable-verbose)
SSPI support: no (--enable-sspi)
ca cert bundle: no
ca cert path: no
ca fallback: no
LDAP support: no (--enable-ldap / --with-ldap-lib / --with-lber-lib)
LDAPS support: no (--enable-ldaps)
RTSP support: no (--enable-rtsp)
RTMP support: no (--with-librtmp)
metalink support: no (--with-libmetalink)
PSL support: no (--with-libpsl)
HTTP2 support: disabled (--with-nghttp2)
Protocols: HTTP
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C curl-7.54.1
Making all in lib
/Applications/Xcode.app/Contents/Developer/usr/bin/make all-am
CC libcurl_la-file.lo
CC libcurl_la-timeval.lo
CC libcurl_la-base64.lo
CC libcurl_la-hostip.lo
CC libcurl_la-progress.lo
CC libcurl_la-formdata.lo
CC libcurl_la-cookie.lo
CC libcurl_la-http.lo
CC libcurl_la-sendf.lo
CC libcurl_la-ftp.lo
CC libcurl_la-url.lo
CC libcurl_la-dict.lo
CC libcurl_la-if2ip.lo
CC libcurl_la-speedcheck.lo
CC libcurl_la-ldap.lo
CC libcurl_la-version.lo
CC libcurl_la-getenv.lo
CC libcurl_la-escape.lo
CC libcurl_la-mprintf.lo
CC libcurl_la-telnet.lo
CC libcurl_la-netrc.lo
CC libcurl_la-getinfo.lo
CC libcurl_la-transfer.lo
CC libcurl_la-strcase.lo
CC libcurl_la-easy.lo
CC libcurl_la-security.lo
CC libcurl_la-curl_fnmatch.lo
CC libcurl_la-fileinfo.lo
CC libcurl_la-ftplistparser.lo
CC libcurl_la-wildcard.lo
CC libcurl_la-krb5.lo
CC libcurl_la-memdebug.lo
CC libcurl_la-http_chunks.lo
CC libcurl_la-strtok.lo
CC libcurl_la-connect.lo
CC libcurl_la-llist.lo
CC libcurl_la-hash.lo
CC libcurl_la-multi.lo
CC libcurl_la-content_encoding.lo
CC libcurl_la-share.lo
CC libcurl_la-http_digest.lo
CC libcurl_la-md4.lo
CC libcurl_la-md5.lo
CC libcurl_la-http_negotiate.lo
CC libcurl_la-inet_pton.lo
CC libcurl_la-strtoofft.lo
CC libcurl_la-strerror.lo
CC libcurl_la-amigaos.lo
CC libcurl_la-hostasyn.lo
CC libcurl_la-hostip4.lo
CC libcurl_la-hostip6.lo
CC libcurl_la-hostsyn.lo
CC libcurl_la-inet_ntop.lo
CC libcurl_la-parsedate.lo
CC libcurl_la-select.lo
CC libcurl_la-tftp.lo
CC libcurl_la-splay.lo
CC libcurl_la-strdup.lo
CC libcurl_la-socks.lo
CC libcurl_la-ssh.lo
CC libcurl_la-curl_addrinfo.lo
CC libcurl_la-socks_gssapi.lo
CC libcurl_la-socks_sspi.lo
CC libcurl_la-curl_sspi.lo
CC libcurl_la-slist.lo
CC libcurl_la-nonblock.lo
CC libcurl_la-curl_memrchr.lo
CC libcurl_la-imap.lo
CC libcurl_la-pop3.lo
CC libcurl_la-smtp.lo
CC libcurl_la-pingpong.lo
CC libcurl_la-rtsp.lo
CC libcurl_la-curl_threads.lo
CC libcurl_la-warnless.lo
CC libcurl_la-hmac.lo
CC libcurl_la-curl_rtmp.lo
CC libcurl_la-openldap.lo
CC libcurl_la-curl_gethostname.lo
CC libcurl_la-gopher.lo
CC libcurl_la-idn_win32.lo
CC libcurl_la-http_proxy.lo
CC libcurl_la-non-ascii.lo
CC libcurl_la-asyn-ares.lo
CC libcurl_la-asyn-thread.lo
CC libcurl_la-curl_gssapi.lo
CC libcurl_la-http_ntlm.lo
CC libcurl_la-curl_ntlm_wb.lo
CC libcurl_la-curl_ntlm_core.lo
CC libcurl_la-curl_sasl.lo
CC libcurl_la-rand.lo
CC libcurl_la-curl_multibyte.lo
CC libcurl_la-hostcheck.lo
CC libcurl_la-conncache.lo
CC libcurl_la-pipeline.lo
CC libcurl_la-dotdot.lo
CC libcurl_la-x509asn1.lo
CC libcurl_la-http2.lo
CC libcurl_la-smb.lo
CC libcurl_la-curl_endian.lo
CC libcurl_la-curl_des.lo
CC libcurl_la-system_win32.lo
CC vauth/libcurl_la-vauth.lo
CC vauth/libcurl_la-cleartext.lo
CC vauth/libcurl_la-cram.lo
CC vauth/libcurl_la-digest.lo
CC vauth/libcurl_la-digest_sspi.lo
CC vauth/libcurl_la-krb5_gssapi.lo
CC vauth/libcurl_la-krb5_sspi.lo
CC vauth/libcurl_la-ntlm.lo
CC vauth/libcurl_la-ntlm_sspi.lo
CC vauth/libcurl_la-oauth2.lo
CC vauth/libcurl_la-spnego_gssapi.lo
CC vauth/libcurl_la-spnego_sspi.lo
CC vtls/libcurl_la-openssl.lo
CC vtls/libcurl_la-gtls.lo
CC vtls/libcurl_la-vtls.lo
CC vtls/libcurl_la-nss.lo
CC vtls/libcurl_la-polarssl.lo
CC vtls/libcurl_la-polarssl_threadlock.lo
CC vtls/libcurl_la-axtls.lo
CC vtls/libcurl_la-cyassl.lo
CC vtls/libcurl_la-schannel.lo
CC vtls/libcurl_la-darwinssl.lo
CC vtls/libcurl_la-gskit.lo
CC vtls/libcurl_la-mbedtls.lo
CCLD libcurl.la
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-file.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-ftp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-dict.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-ldap.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-telnet.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-security.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-ftplistparser.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-krb5.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-memdebug.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-strtok.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-content_encoding.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-md4.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-http_negotiate.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-inet_pton.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-strtoofft.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-amigaos.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-hostasyn.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-hostip4.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-inet_ntop.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-tftp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-socks.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-ssh.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-socks_gssapi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-socks_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-imap.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-pop3.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-smtp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-pingpong.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-rtsp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_threads.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_rtmp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-openldap.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-gopher.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-idn_win32.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-http_proxy.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-non-ascii.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-asyn-ares.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-asyn-thread.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_gssapi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-http_ntlm.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_ntlm_wb.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_ntlm_core.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_multibyte.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-hostcheck.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-x509asn1.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-smb.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_des.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-system_win32.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-digest_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-krb5_gssapi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-krb5_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-ntlm.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-ntlm_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-spnego_gssapi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-spnego_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-openssl.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-gtls.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-nss.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-polarssl.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-polarssl_threadlock.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-axtls.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-cyassl.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-schannel.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-darwinssl.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-gskit.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-mbedtls.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-file.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-ftp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-dict.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-ldap.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-telnet.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-security.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-ftplistparser.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-krb5.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-memdebug.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-strtok.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-content_encoding.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-md4.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-http_negotiate.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-inet_pton.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-strtoofft.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-amigaos.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-hostasyn.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-hostip4.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-inet_ntop.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-tftp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-socks.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-ssh.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-socks_gssapi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-socks_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-imap.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-pop3.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-smtp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-pingpong.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-rtsp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_threads.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_rtmp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-openldap.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-gopher.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-idn_win32.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-http_proxy.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-non-ascii.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-asyn-ares.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-asyn-thread.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_gssapi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-http_ntlm.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_ntlm_wb.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_ntlm_core.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_multibyte.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-hostcheck.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-x509asn1.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-smb.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-curl_des.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-system_win32.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-digest_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-krb5_gssapi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-krb5_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-ntlm.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-ntlm_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-spnego_gssapi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-spnego_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-openssl.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-gtls.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-nss.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-polarssl.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-polarssl_threadlock.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-axtls.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-cyassl.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-schannel.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-darwinssl.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-gskit.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libcurl.a(libcurl_la-mbedtls.o) has no symbols
Making all in docs
Making all in libcurl
Making all in opts
make[5]: Nothing to be done for `all'.
make[5]: Nothing to be done for `all-am'.
Making all in .
make[4]: Nothing to be done for `all-am'.
Making all in cmdline-opts
make[4]: Nothing to be done for `all'.
Making all in src
/Applications/Xcode.app/Contents/Developer/usr/bin/make all-am
CC curl-slist_wc.o
CC curl-tool_binmode.o
CC curl-tool_bname.o
CC curl-tool_cb_dbg.o
CC curl-tool_cb_hdr.o
CC curl-tool_cb_prg.o
CC curl-tool_cb_rea.o
CC curl-tool_cb_see.o
CC curl-tool_cb_wrt.o
CC curl-tool_cfgable.o
CC curl-tool_convert.o
CC curl-tool_dirhie.o
CC curl-tool_doswin.o
CC curl-tool_easysrc.o
CC curl-tool_formparse.o
CC curl-tool_getparam.o
CC curl-tool_getpass.o
CC curl-tool_help.o
CC curl-tool_helpers.o
CC curl-tool_homedir.o
CC curl-tool_hugehelp.o
CC curl-tool_libinfo.o
CC curl-tool_main.o
CC curl-tool_metalink.o
CC curl-tool_mfiles.o
CC curl-tool_msgs.o
CC curl-tool_operate.o
CC curl-tool_operhlp.o
CC curl-tool_panykey.o
CC curl-tool_paramhlp.o
CC curl-tool_parsecfg.o
CC curl-tool_strdup.o
CC curl-tool_setopt.o
CC curl-tool_sleep.o
CC curl-tool_urlglob.o
CC curl-tool_util.o
CC curl-tool_vms.o
CC curl-tool_writeout.o
CC curl-tool_xattr.o
CC ../lib/curl-strtoofft.o
CC ../lib/curl-nonblock.o
CC ../lib/curl-warnless.o
CCLD curl
Making all in include
Making all in curl
/Applications/Xcode.app/Contents/Developer/usr/bin/make all-am
make[5]: Nothing to be done for `all-am'.
make[4]: Nothing to be done for `all-am'.
make[3]: Nothing to be done for `all-am'.
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C curl-7.54.1 install
Making install in lib
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/lib'
/bin/sh ../libtool --mode=install /usr/local/bin/ginstall -c libcurl.la '/Users/euphorbium/experiments/Rack/lib'
libtool: install: /usr/local/bin/ginstall -c .libs/libcurl.4.dylib /Users/euphorbium/experiments/Rack/lib/libcurl.4.dylib
libtool: install: (cd /Users/euphorbium/experiments/Rack/lib && { ln -s -f libcurl.4.dylib libcurl.dylib || { rm -f libcurl.dylib && ln -s libcurl.4.dylib libcurl.dylib; }; })
libtool: install: /usr/local/bin/ginstall -c .libs/libcurl.lai /Users/euphorbium/experiments/Rack/lib/libcurl.la
libtool: install: /usr/local/bin/ginstall -c .libs/libcurl.a /Users/euphorbium/experiments/Rack/lib/libcurl.a
libtool: install: chmod 644 /Users/euphorbium/experiments/Rack/lib/libcurl.a
libtool: install: ranlib /Users/euphorbium/experiments/Rack/lib/libcurl.a
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-file.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-ftp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-dict.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-ldap.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-telnet.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-security.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-ftplistparser.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-krb5.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-memdebug.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-strtok.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-content_encoding.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-md4.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-http_negotiate.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-inet_pton.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-strtoofft.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-amigaos.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-hostasyn.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-hostip4.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-inet_ntop.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-tftp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-socks.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-ssh.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-socks_gssapi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-socks_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-curl_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-imap.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-pop3.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-smtp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-pingpong.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-rtsp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-curl_threads.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-curl_rtmp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-openldap.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-gopher.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-idn_win32.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-http_proxy.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-non-ascii.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-asyn-ares.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-asyn-thread.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-curl_gssapi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-http_ntlm.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-curl_ntlm_wb.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-curl_ntlm_core.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-curl_multibyte.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-hostcheck.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-x509asn1.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-smb.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-curl_des.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-system_win32.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-digest_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-krb5_gssapi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-krb5_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-ntlm.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-ntlm_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-spnego_gssapi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-spnego_sspi.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-openssl.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-gtls.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-nss.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-polarssl.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-polarssl_threadlock.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-axtls.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-cyassl.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-schannel.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-darwinssl.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-gskit.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: /Users/euphorbium/experiments/Rack/lib/libcurl.a(libcurl_la-mbedtls.o) has no symbols
make[4]: Nothing to be done for `install-data-am'.
Making install in docs
Making install in libcurl
Making install in opts
make[6]: Nothing to be done for `install-exec-am'.
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLINFO_ACTIVESOCKET.3 CURLINFO_APPCONNECT_TIME.3 CURLINFO_CERTINFO.3 CURLINFO_CONDITION_UNMET.3 CURLINFO_CONNECT_TIME.3 CURLINFO_CONTENT_LENGTH_DOWNLOAD.3 CURLINFO_CONTENT_LENGTH_UPLOAD.3 CURLINFO_CONTENT_TYPE.3 CURLINFO_COOKIELIST.3 CURLINFO_EFFECTIVE_URL.3 CURLINFO_FILETIME.3 CURLINFO_FTP_ENTRY_PATH.3 CURLINFO_HEADER_SIZE.3 CURLINFO_HTTPAUTH_AVAIL.3 CURLINFO_HTTP_CONNECTCODE.3 CURLINFO_HTTP_VERSION.3 CURLINFO_LASTSOCKET.3 CURLINFO_LOCAL_IP.3 CURLINFO_LOCAL_PORT.3 CURLINFO_NAMELOOKUP_TIME.3 CURLINFO_NUM_CONNECTS.3 CURLINFO_OS_ERRNO.3 CURLINFO_PRETRANSFER_TIME.3 CURLINFO_PRIMARY_IP.3 CURLINFO_PRIMARY_PORT.3 CURLINFO_PRIVATE.3 CURLINFO_PROTOCOL.3 CURLINFO_PROXYAUTH_AVAIL.3 CURLINFO_PROXY_SSL_VERIFYRESULT.3 CURLINFO_REDIRECT_COUNT.3 CURLINFO_REDIRECT_TIME.3 CURLINFO_REDIRECT_URL.3 CURLINFO_REQUEST_SIZE.3 CURLINFO_RESPONSE_CODE.3 CURLINFO_RTSP_CLIENT_CSEQ.3 CURLINFO_RTSP_CSEQ_RECV.3 CURLINFO_RTSP_SERVER_CSEQ.3 CURLINFO_RTSP_SESSION_ID.3 CURLINFO_SCHEME.3 CURLINFO_SIZE_DOWNLOAD.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLINFO_SIZE_UPLOAD.3 CURLINFO_SPEED_DOWNLOAD.3 CURLINFO_SPEED_UPLOAD.3 CURLINFO_SSL_ENGINES.3 CURLINFO_SSL_VERIFYRESULT.3 CURLINFO_STARTTRANSFER_TIME.3 CURLINFO_TLS_SESSION.3 CURLINFO_TLS_SSL_PTR.3 CURLINFO_TOTAL_TIME.3 CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3 CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3 CURLMOPT_MAXCONNECTS.3 CURLMOPT_MAX_HOST_CONNECTIONS.3 CURLMOPT_MAX_PIPELINE_LENGTH.3 CURLMOPT_MAX_TOTAL_CONNECTIONS.3 CURLMOPT_PIPELINING.3 CURLMOPT_PIPELINING_SERVER_BL.3 CURLMOPT_PIPELINING_SITE_BL.3 CURLMOPT_PUSHDATA.3 CURLMOPT_PUSHFUNCTION.3 CURLMOPT_SOCKETDATA.3 CURLMOPT_SOCKETFUNCTION.3 CURLMOPT_TIMERDATA.3 CURLMOPT_TIMERFUNCTION.3 CURLOPT_ABSTRACT_UNIX_SOCKET.3 CURLOPT_ACCEPTTIMEOUT_MS.3 CURLOPT_ACCEPT_ENCODING.3 CURLOPT_ADDRESS_SCOPE.3 CURLOPT_APPEND.3 CURLOPT_AUTOREFERER.3 CURLOPT_BUFFERSIZE.3 CURLOPT_CAINFO.3 CURLOPT_CAPATH.3 CURLOPT_CERTINFO.3 CURLOPT_CHUNK_BGN_FUNCTION.3 CURLOPT_CHUNK_DATA.3 CURLOPT_CHUNK_END_FUNCTION.3 CURLOPT_CLOSESOCKETDATA.3 CURLOPT_CLOSESOCKETFUNCTION.3 CURLOPT_CONNECTTIMEOUT.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLOPT_CONNECTTIMEOUT_MS.3 CURLOPT_CONNECT_ONLY.3 CURLOPT_CONNECT_TO.3 CURLOPT_CONV_FROM_NETWORK_FUNCTION.3 CURLOPT_CONV_FROM_UTF8_FUNCTION.3 CURLOPT_CONV_TO_NETWORK_FUNCTION.3 CURLOPT_COOKIE.3 CURLOPT_COOKIEFILE.3 CURLOPT_COOKIEJAR.3 CURLOPT_COOKIELIST.3 CURLOPT_COOKIESESSION.3 CURLOPT_COPYPOSTFIELDS.3 CURLOPT_CRLF.3 CURLOPT_CRLFILE.3 CURLOPT_CUSTOMREQUEST.3 CURLOPT_DEBUGDATA.3 CURLOPT_DEBUGFUNCTION.3 CURLOPT_DEFAULT_PROTOCOL.3 CURLOPT_DIRLISTONLY.3 CURLOPT_DNS_CACHE_TIMEOUT.3 CURLOPT_DNS_INTERFACE.3 CURLOPT_DNS_LOCAL_IP4.3 CURLOPT_DNS_LOCAL_IP6.3 CURLOPT_DNS_SERVERS.3 CURLOPT_DNS_USE_GLOBAL_CACHE.3 CURLOPT_EGDSOCKET.3 CURLOPT_ERRORBUFFER.3 CURLOPT_EXPECT_100_TIMEOUT_MS.3 CURLOPT_FAILONERROR.3 CURLOPT_FILETIME.3 CURLOPT_FNMATCH_DATA.3 CURLOPT_FNMATCH_FUNCTION.3 CURLOPT_FOLLOWLOCATION.3 CURLOPT_FORBID_REUSE.3 CURLOPT_FRESH_CONNECT.3 CURLOPT_FTPPORT.3 CURLOPT_FTPSSLAUTH.3 CURLOPT_FTP_ACCOUNT.3 CURLOPT_FTP_ALTERNATIVE_TO_USER.3 CURLOPT_FTP_CREATE_MISSING_DIRS.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLOPT_FTP_FILEMETHOD.3 CURLOPT_FTP_RESPONSE_TIMEOUT.3 CURLOPT_FTP_SKIP_PASV_IP.3 CURLOPT_FTP_SSL_CCC.3 CURLOPT_FTP_USE_EPRT.3 CURLOPT_FTP_USE_EPSV.3 CURLOPT_FTP_USE_PRET.3 CURLOPT_GSSAPI_DELEGATION.3 CURLOPT_HEADER.3 CURLOPT_HEADERDATA.3 CURLOPT_HEADERFUNCTION.3 CURLOPT_HEADEROPT.3 CURLOPT_HTTP200ALIASES.3 CURLOPT_HTTPAUTH.3 CURLOPT_HTTPGET.3 CURLOPT_HTTPHEADER.3 CURLOPT_HTTPPOST.3 CURLOPT_HTTPPROXYTUNNEL.3 CURLOPT_HTTP_CONTENT_DECODING.3 CURLOPT_HTTP_TRANSFER_DECODING.3 CURLOPT_HTTP_VERSION.3 CURLOPT_IGNORE_CONTENT_LENGTH.3 CURLOPT_INFILESIZE.3 CURLOPT_INFILESIZE_LARGE.3 CURLOPT_INTERFACE.3 CURLOPT_INTERLEAVEDATA.3 CURLOPT_INTERLEAVEFUNCTION.3 CURLOPT_IOCTLDATA.3 CURLOPT_IOCTLFUNCTION.3 CURLOPT_IPRESOLVE.3 CURLOPT_ISSUERCERT.3 CURLOPT_KEEP_SENDING_ON_ERROR.3 CURLOPT_KEYPASSWD.3 CURLOPT_KRBLEVEL.3 CURLOPT_LOCALPORT.3 CURLOPT_LOCALPORTRANGE.3 CURLOPT_LOGIN_OPTIONS.3 CURLOPT_LOW_SPEED_LIMIT.3 CURLOPT_LOW_SPEED_TIME.3 CURLOPT_MAIL_AUTH.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLOPT_MAIL_FROM.3 CURLOPT_MAIL_RCPT.3 CURLOPT_MAXCONNECTS.3 CURLOPT_MAXFILESIZE.3 CURLOPT_MAXFILESIZE_LARGE.3 CURLOPT_MAXREDIRS.3 CURLOPT_MAX_RECV_SPEED_LARGE.3 CURLOPT_MAX_SEND_SPEED_LARGE.3 CURLOPT_NETRC.3 CURLOPT_NETRC_FILE.3 CURLOPT_NEW_DIRECTORY_PERMS.3 CURLOPT_NEW_FILE_PERMS.3 CURLOPT_NOBODY.3 CURLOPT_NOPROGRESS.3 CURLOPT_NOPROXY.3 CURLOPT_NOSIGNAL.3 CURLOPT_OPENSOCKETDATA.3 CURLOPT_OPENSOCKETFUNCTION.3 CURLOPT_PASSWORD.3 CURLOPT_PATH_AS_IS.3 CURLOPT_PINNEDPUBLICKEY.3 CURLOPT_PIPEWAIT.3 CURLOPT_PORT.3 CURLOPT_POST.3 CURLOPT_POSTFIELDS.3 CURLOPT_POSTFIELDSIZE.3 CURLOPT_POSTFIELDSIZE_LARGE.3 CURLOPT_POSTQUOTE.3 CURLOPT_POSTREDIR.3 CURLOPT_PREQUOTE.3 CURLOPT_PRE_PROXY.3 CURLOPT_PRIVATE.3 CURLOPT_PROGRESSDATA.3 CURLOPT_PROGRESSFUNCTION.3 CURLOPT_PROTOCOLS.3 CURLOPT_PROXY.3 CURLOPT_PROXYAUTH.3 CURLOPT_PROXYHEADER.3 CURLOPT_PROXYPASSWORD.3 CURLOPT_PROXYPORT.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLOPT_PROXYTYPE.3 CURLOPT_PROXYUSERNAME.3 CURLOPT_PROXYUSERPWD.3 CURLOPT_PROXY_CAINFO.3 CURLOPT_PROXY_CAPATH.3 CURLOPT_PROXY_CRLFILE.3 CURLOPT_PROXY_KEYPASSWD.3 CURLOPT_PROXY_PINNEDPUBLICKEY.3 CURLOPT_PROXY_SERVICE_NAME.3 CURLOPT_PROXY_SSLCERT.3 CURLOPT_PROXY_SSLCERTTYPE.3 CURLOPT_PROXY_SSLKEY.3 CURLOPT_PROXY_SSLKEYTYPE.3 CURLOPT_PROXY_SSLVERSION.3 CURLOPT_PROXY_SSL_CIPHER_LIST.3 CURLOPT_PROXY_SSL_OPTIONS.3 CURLOPT_PROXY_SSL_VERIFYHOST.3 CURLOPT_PROXY_SSL_VERIFYPEER.3 CURLOPT_PROXY_TLSAUTH_PASSWORD.3 CURLOPT_PROXY_TLSAUTH_TYPE.3 CURLOPT_PROXY_TLSAUTH_USERNAME.3 CURLOPT_PROXY_TRANSFER_MODE.3 CURLOPT_PUT.3 CURLOPT_QUOTE.3 CURLOPT_RANDOM_FILE.3 CURLOPT_RANGE.3 CURLOPT_READDATA.3 CURLOPT_READFUNCTION.3 CURLOPT_REDIR_PROTOCOLS.3 CURLOPT_REFERER.3 CURLOPT_RESOLVE.3 CURLOPT_RESUME_FROM.3 CURLOPT_RESUME_FROM_LARGE.3 CURLOPT_RTSP_CLIENT_CSEQ.3 CURLOPT_RTSP_REQUEST.3 CURLOPT_RTSP_SERVER_CSEQ.3 CURLOPT_RTSP_SESSION_ID.3 CURLOPT_RTSP_STREAM_URI.3 CURLOPT_RTSP_TRANSPORT.3 CURLOPT_SASL_IR.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLOPT_SEEKDATA.3 CURLOPT_SEEKFUNCTION.3 CURLOPT_SERVICE_NAME.3 CURLOPT_SHARE.3 CURLOPT_SOCKOPTDATA.3 CURLOPT_SOCKOPTFUNCTION.3 CURLOPT_SOCKS5_GSSAPI_NEC.3 CURLOPT_SOCKS5_GSSAPI_SERVICE.3 CURLOPT_SSH_AUTH_TYPES.3 CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3 CURLOPT_SSH_KEYDATA.3 CURLOPT_SSH_KEYFUNCTION.3 CURLOPT_SSH_KNOWNHOSTS.3 CURLOPT_SSH_PRIVATE_KEYFILE.3 CURLOPT_SSH_PUBLIC_KEYFILE.3 CURLOPT_SSLCERT.3 CURLOPT_SSLCERTTYPE.3 CURLOPT_SSLENGINE.3 CURLOPT_SSLENGINE_DEFAULT.3 CURLOPT_SSLKEY.3 CURLOPT_SSLKEYTYPE.3 CURLOPT_SSLVERSION.3 CURLOPT_SSL_CIPHER_LIST.3 CURLOPT_SSL_CTX_DATA.3 CURLOPT_SSL_CTX_FUNCTION.3 CURLOPT_SSL_ENABLE_ALPN.3 CURLOPT_SSL_ENABLE_NPN.3 CURLOPT_SSL_FALSESTART.3 CURLOPT_SSL_OPTIONS.3 CURLOPT_SSL_SESSIONID_CACHE.3 CURLOPT_SSL_VERIFYHOST.3 CURLOPT_SSL_VERIFYPEER.3 CURLOPT_SSL_VERIFYSTATUS.3 CURLOPT_STDERR.3 CURLOPT_STREAM_DEPENDS.3 CURLOPT_STREAM_DEPENDS_E.3 CURLOPT_STREAM_WEIGHT.3 CURLOPT_SUPPRESS_CONNECT_HEADERS.3 CURLOPT_TCP_FASTOPEN.3 CURLOPT_TCP_KEEPALIVE.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLOPT_TCP_KEEPIDLE.3 CURLOPT_TCP_KEEPINTVL.3 CURLOPT_TCP_NODELAY.3 CURLOPT_TELNETOPTIONS.3 CURLOPT_TFTP_BLKSIZE.3 CURLOPT_TFTP_NO_OPTIONS.3 CURLOPT_TIMECONDITION.3 CURLOPT_TIMEOUT.3 CURLOPT_TIMEOUT_MS.3 CURLOPT_TIMEVALUE.3 CURLOPT_TLSAUTH_PASSWORD.3 CURLOPT_TLSAUTH_TYPE.3 CURLOPT_TLSAUTH_USERNAME.3 CURLOPT_TRANSFERTEXT.3 CURLOPT_TRANSFER_ENCODING.3 CURLOPT_UNIX_SOCKET_PATH.3 CURLOPT_UNRESTRICTED_AUTH.3 CURLOPT_UPLOAD.3 CURLOPT_URL.3 CURLOPT_USERAGENT.3 CURLOPT_USERNAME.3 CURLOPT_USERPWD.3 CURLOPT_USE_SSL.3 CURLOPT_VERBOSE.3 CURLOPT_WILDCARDMATCH.3 CURLOPT_WRITEDATA.3 CURLOPT_WRITEFUNCTION.3 CURLOPT_XFERINFODATA.3 CURLOPT_XFERINFOFUNCTION.3 CURLOPT_XOAUTH2_BEARER.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
make[6]: Nothing to be done for `install-exec-am'.
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/share/aclocal'
/usr/local/bin/ginstall -c -m 644 libcurl.m4 '/Users/euphorbium/experiments/Rack/share/aclocal'
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 curl_easy_cleanup.3 curl_easy_getinfo.3 curl_easy_init.3 curl_easy_perform.3 curl_easy_setopt.3 curl_easy_duphandle.3 curl_formadd.3 curl_formfree.3 curl_getdate.3 curl_getenv.3 curl_slist_append.3 curl_slist_free_all.3 curl_version.3 curl_version_info.3 curl_escape.3 curl_unescape.3 curl_free.3 curl_strequal.3 curl_mprintf.3 curl_global_init.3 curl_global_cleanup.3 curl_multi_add_handle.3 curl_multi_cleanup.3 curl_multi_fdset.3 curl_multi_info_read.3 curl_multi_init.3 curl_multi_perform.3 curl_multi_remove_handle.3 curl_share_cleanup.3 curl_share_init.3 curl_share_setopt.3 libcurl.3 libcurl-easy.3 libcurl-multi.3 libcurl-share.3 libcurl-errors.3 curl_easy_strerror.3 curl_multi_strerror.3 curl_share_strerror.3 curl_global_init_mem.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 libcurl-tutorial.3 curl_easy_reset.3 curl_easy_escape.3 curl_easy_unescape.3 curl_multi_setopt.3 curl_multi_socket.3 curl_multi_timeout.3 curl_formget.3 curl_multi_assign.3 curl_easy_pause.3 curl_easy_recv.3 curl_easy_send.3 curl_multi_socket_action.3 curl_multi_wait.3 libcurl-symbols.3 libcurl-thread.3 curl_multi_socket_all.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
Making install in .
make[5]: Nothing to be done for `install-exec-am'.
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/share/man/man1'
/usr/local/bin/ginstall -c -m 644 curl-config.1 /Users/euphorbium/experiments/Rack/dep/curl-7.54.1/docs/curl.1 '/Users/euphorbium/experiments/Rack/share/man/man1'
Making install in cmdline-opts
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
Making install in src
/Applications/Xcode.app/Contents/Developer/usr/bin/make install-am
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/bin'
/bin/sh ../libtool --mode=install /usr/local/bin/ginstall -c curl '/Users/euphorbium/experiments/Rack/bin'
libtool: install: /usr/local/bin/ginstall -c .libs/curl /Users/euphorbium/experiments/Rack/bin/curl
make[5]: Nothing to be done for `install-data-am'.
Making install in include
Making install in curl
make[5]: Nothing to be done for `install-exec-am'.
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/include/curl'
/usr/local/bin/ginstall -c -m 644 curl.h curlver.h easy.h mprintf.h stdcheaders.h multi.h typecheck-gcc.h curlbuild.h curlrules.h system.h '/Users/euphorbium/experiments/Rack/include/curl'
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/bin'
/usr/local/bin/ginstall -c curl-config '/Users/euphorbium/experiments/Rack/bin'
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/lib/pkgconfig'
/usr/local/bin/ginstall -c -m 644 libcurl.pc '/Users/euphorbium/experiments/Rack/lib/pkgconfig'
/Applications/Xcode.app/Contents/Developer/usr/bin/make install-data-hook
cd include && /Applications/Xcode.app/Contents/Developer/usr/bin/make install
Making install in curl
make[8]: Nothing to be done for `install-exec-am'.
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/include/curl'
/usr/local/bin/ginstall -c -m 644 curl.h curlver.h easy.h mprintf.h stdcheaders.h multi.h typecheck-gcc.h curlbuild.h curlrules.h system.h '/Users/euphorbium/experiments/Rack/include/curl'
make[8]: Nothing to be done for `install-exec-am'.
make[8]: Nothing to be done for `install-data-am'.
cd docs && /Applications/Xcode.app/Contents/Developer/usr/bin/make install
Making install in libcurl
Making install in opts
make[9]: Nothing to be done for `install-exec-am'.
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLINFO_ACTIVESOCKET.3 CURLINFO_APPCONNECT_TIME.3 CURLINFO_CERTINFO.3 CURLINFO_CONDITION_UNMET.3 CURLINFO_CONNECT_TIME.3 CURLINFO_CONTENT_LENGTH_DOWNLOAD.3 CURLINFO_CONTENT_LENGTH_UPLOAD.3 CURLINFO_CONTENT_TYPE.3 CURLINFO_COOKIELIST.3 CURLINFO_EFFECTIVE_URL.3 CURLINFO_FILETIME.3 CURLINFO_FTP_ENTRY_PATH.3 CURLINFO_HEADER_SIZE.3 CURLINFO_HTTPAUTH_AVAIL.3 CURLINFO_HTTP_CONNECTCODE.3 CURLINFO_HTTP_VERSION.3 CURLINFO_LASTSOCKET.3 CURLINFO_LOCAL_IP.3 CURLINFO_LOCAL_PORT.3 CURLINFO_NAMELOOKUP_TIME.3 CURLINFO_NUM_CONNECTS.3 CURLINFO_OS_ERRNO.3 CURLINFO_PRETRANSFER_TIME.3 CURLINFO_PRIMARY_IP.3 CURLINFO_PRIMARY_PORT.3 CURLINFO_PRIVATE.3 CURLINFO_PROTOCOL.3 CURLINFO_PROXYAUTH_AVAIL.3 CURLINFO_PROXY_SSL_VERIFYRESULT.3 CURLINFO_REDIRECT_COUNT.3 CURLINFO_REDIRECT_TIME.3 CURLINFO_REDIRECT_URL.3 CURLINFO_REQUEST_SIZE.3 CURLINFO_RESPONSE_CODE.3 CURLINFO_RTSP_CLIENT_CSEQ.3 CURLINFO_RTSP_CSEQ_RECV.3 CURLINFO_RTSP_SERVER_CSEQ.3 CURLINFO_RTSP_SESSION_ID.3 CURLINFO_SCHEME.3 CURLINFO_SIZE_DOWNLOAD.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLINFO_SIZE_UPLOAD.3 CURLINFO_SPEED_DOWNLOAD.3 CURLINFO_SPEED_UPLOAD.3 CURLINFO_SSL_ENGINES.3 CURLINFO_SSL_VERIFYRESULT.3 CURLINFO_STARTTRANSFER_TIME.3 CURLINFO_TLS_SESSION.3 CURLINFO_TLS_SSL_PTR.3 CURLINFO_TOTAL_TIME.3 CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3 CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3 CURLMOPT_MAXCONNECTS.3 CURLMOPT_MAX_HOST_CONNECTIONS.3 CURLMOPT_MAX_PIPELINE_LENGTH.3 CURLMOPT_MAX_TOTAL_CONNECTIONS.3 CURLMOPT_PIPELINING.3 CURLMOPT_PIPELINING_SERVER_BL.3 CURLMOPT_PIPELINING_SITE_BL.3 CURLMOPT_PUSHDATA.3 CURLMOPT_PUSHFUNCTION.3 CURLMOPT_SOCKETDATA.3 CURLMOPT_SOCKETFUNCTION.3 CURLMOPT_TIMERDATA.3 CURLMOPT_TIMERFUNCTION.3 CURLOPT_ABSTRACT_UNIX_SOCKET.3 CURLOPT_ACCEPTTIMEOUT_MS.3 CURLOPT_ACCEPT_ENCODING.3 CURLOPT_ADDRESS_SCOPE.3 CURLOPT_APPEND.3 CURLOPT_AUTOREFERER.3 CURLOPT_BUFFERSIZE.3 CURLOPT_CAINFO.3 CURLOPT_CAPATH.3 CURLOPT_CERTINFO.3 CURLOPT_CHUNK_BGN_FUNCTION.3 CURLOPT_CHUNK_DATA.3 CURLOPT_CHUNK_END_FUNCTION.3 CURLOPT_CLOSESOCKETDATA.3 CURLOPT_CLOSESOCKETFUNCTION.3 CURLOPT_CONNECTTIMEOUT.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLOPT_CONNECTTIMEOUT_MS.3 CURLOPT_CONNECT_ONLY.3 CURLOPT_CONNECT_TO.3 CURLOPT_CONV_FROM_NETWORK_FUNCTION.3 CURLOPT_CONV_FROM_UTF8_FUNCTION.3 CURLOPT_CONV_TO_NETWORK_FUNCTION.3 CURLOPT_COOKIE.3 CURLOPT_COOKIEFILE.3 CURLOPT_COOKIEJAR.3 CURLOPT_COOKIELIST.3 CURLOPT_COOKIESESSION.3 CURLOPT_COPYPOSTFIELDS.3 CURLOPT_CRLF.3 CURLOPT_CRLFILE.3 CURLOPT_CUSTOMREQUEST.3 CURLOPT_DEBUGDATA.3 CURLOPT_DEBUGFUNCTION.3 CURLOPT_DEFAULT_PROTOCOL.3 CURLOPT_DIRLISTONLY.3 CURLOPT_DNS_CACHE_TIMEOUT.3 CURLOPT_DNS_INTERFACE.3 CURLOPT_DNS_LOCAL_IP4.3 CURLOPT_DNS_LOCAL_IP6.3 CURLOPT_DNS_SERVERS.3 CURLOPT_DNS_USE_GLOBAL_CACHE.3 CURLOPT_EGDSOCKET.3 CURLOPT_ERRORBUFFER.3 CURLOPT_EXPECT_100_TIMEOUT_MS.3 CURLOPT_FAILONERROR.3 CURLOPT_FILETIME.3 CURLOPT_FNMATCH_DATA.3 CURLOPT_FNMATCH_FUNCTION.3 CURLOPT_FOLLOWLOCATION.3 CURLOPT_FORBID_REUSE.3 CURLOPT_FRESH_CONNECT.3 CURLOPT_FTPPORT.3 CURLOPT_FTPSSLAUTH.3 CURLOPT_FTP_ACCOUNT.3 CURLOPT_FTP_ALTERNATIVE_TO_USER.3 CURLOPT_FTP_CREATE_MISSING_DIRS.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLOPT_FTP_FILEMETHOD.3 CURLOPT_FTP_RESPONSE_TIMEOUT.3 CURLOPT_FTP_SKIP_PASV_IP.3 CURLOPT_FTP_SSL_CCC.3 CURLOPT_FTP_USE_EPRT.3 CURLOPT_FTP_USE_EPSV.3 CURLOPT_FTP_USE_PRET.3 CURLOPT_GSSAPI_DELEGATION.3 CURLOPT_HEADER.3 CURLOPT_HEADERDATA.3 CURLOPT_HEADERFUNCTION.3 CURLOPT_HEADEROPT.3 CURLOPT_HTTP200ALIASES.3 CURLOPT_HTTPAUTH.3 CURLOPT_HTTPGET.3 CURLOPT_HTTPHEADER.3 CURLOPT_HTTPPOST.3 CURLOPT_HTTPPROXYTUNNEL.3 CURLOPT_HTTP_CONTENT_DECODING.3 CURLOPT_HTTP_TRANSFER_DECODING.3 CURLOPT_HTTP_VERSION.3 CURLOPT_IGNORE_CONTENT_LENGTH.3 CURLOPT_INFILESIZE.3 CURLOPT_INFILESIZE_LARGE.3 CURLOPT_INTERFACE.3 CURLOPT_INTERLEAVEDATA.3 CURLOPT_INTERLEAVEFUNCTION.3 CURLOPT_IOCTLDATA.3 CURLOPT_IOCTLFUNCTION.3 CURLOPT_IPRESOLVE.3 CURLOPT_ISSUERCERT.3 CURLOPT_KEEP_SENDING_ON_ERROR.3 CURLOPT_KEYPASSWD.3 CURLOPT_KRBLEVEL.3 CURLOPT_LOCALPORT.3 CURLOPT_LOCALPORTRANGE.3 CURLOPT_LOGIN_OPTIONS.3 CURLOPT_LOW_SPEED_LIMIT.3 CURLOPT_LOW_SPEED_TIME.3 CURLOPT_MAIL_AUTH.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLOPT_MAIL_FROM.3 CURLOPT_MAIL_RCPT.3 CURLOPT_MAXCONNECTS.3 CURLOPT_MAXFILESIZE.3 CURLOPT_MAXFILESIZE_LARGE.3 CURLOPT_MAXREDIRS.3 CURLOPT_MAX_RECV_SPEED_LARGE.3 CURLOPT_MAX_SEND_SPEED_LARGE.3 CURLOPT_NETRC.3 CURLOPT_NETRC_FILE.3 CURLOPT_NEW_DIRECTORY_PERMS.3 CURLOPT_NEW_FILE_PERMS.3 CURLOPT_NOBODY.3 CURLOPT_NOPROGRESS.3 CURLOPT_NOPROXY.3 CURLOPT_NOSIGNAL.3 CURLOPT_OPENSOCKETDATA.3 CURLOPT_OPENSOCKETFUNCTION.3 CURLOPT_PASSWORD.3 CURLOPT_PATH_AS_IS.3 CURLOPT_PINNEDPUBLICKEY.3 CURLOPT_PIPEWAIT.3 CURLOPT_PORT.3 CURLOPT_POST.3 CURLOPT_POSTFIELDS.3 CURLOPT_POSTFIELDSIZE.3 CURLOPT_POSTFIELDSIZE_LARGE.3 CURLOPT_POSTQUOTE.3 CURLOPT_POSTREDIR.3 CURLOPT_PREQUOTE.3 CURLOPT_PRE_PROXY.3 CURLOPT_PRIVATE.3 CURLOPT_PROGRESSDATA.3 CURLOPT_PROGRESSFUNCTION.3 CURLOPT_PROTOCOLS.3 CURLOPT_PROXY.3 CURLOPT_PROXYAUTH.3 CURLOPT_PROXYHEADER.3 CURLOPT_PROXYPASSWORD.3 CURLOPT_PROXYPORT.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLOPT_PROXYTYPE.3 CURLOPT_PROXYUSERNAME.3 CURLOPT_PROXYUSERPWD.3 CURLOPT_PROXY_CAINFO.3 CURLOPT_PROXY_CAPATH.3 CURLOPT_PROXY_CRLFILE.3 CURLOPT_PROXY_KEYPASSWD.3 CURLOPT_PROXY_PINNEDPUBLICKEY.3 CURLOPT_PROXY_SERVICE_NAME.3 CURLOPT_PROXY_SSLCERT.3 CURLOPT_PROXY_SSLCERTTYPE.3 CURLOPT_PROXY_SSLKEY.3 CURLOPT_PROXY_SSLKEYTYPE.3 CURLOPT_PROXY_SSLVERSION.3 CURLOPT_PROXY_SSL_CIPHER_LIST.3 CURLOPT_PROXY_SSL_OPTIONS.3 CURLOPT_PROXY_SSL_VERIFYHOST.3 CURLOPT_PROXY_SSL_VERIFYPEER.3 CURLOPT_PROXY_TLSAUTH_PASSWORD.3 CURLOPT_PROXY_TLSAUTH_TYPE.3 CURLOPT_PROXY_TLSAUTH_USERNAME.3 CURLOPT_PROXY_TRANSFER_MODE.3 CURLOPT_PUT.3 CURLOPT_QUOTE.3 CURLOPT_RANDOM_FILE.3 CURLOPT_RANGE.3 CURLOPT_READDATA.3 CURLOPT_READFUNCTION.3 CURLOPT_REDIR_PROTOCOLS.3 CURLOPT_REFERER.3 CURLOPT_RESOLVE.3 CURLOPT_RESUME_FROM.3 CURLOPT_RESUME_FROM_LARGE.3 CURLOPT_RTSP_CLIENT_CSEQ.3 CURLOPT_RTSP_REQUEST.3 CURLOPT_RTSP_SERVER_CSEQ.3 CURLOPT_RTSP_SESSION_ID.3 CURLOPT_RTSP_STREAM_URI.3 CURLOPT_RTSP_TRANSPORT.3 CURLOPT_SASL_IR.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLOPT_SEEKDATA.3 CURLOPT_SEEKFUNCTION.3 CURLOPT_SERVICE_NAME.3 CURLOPT_SHARE.3 CURLOPT_SOCKOPTDATA.3 CURLOPT_SOCKOPTFUNCTION.3 CURLOPT_SOCKS5_GSSAPI_NEC.3 CURLOPT_SOCKS5_GSSAPI_SERVICE.3 CURLOPT_SSH_AUTH_TYPES.3 CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3 CURLOPT_SSH_KEYDATA.3 CURLOPT_SSH_KEYFUNCTION.3 CURLOPT_SSH_KNOWNHOSTS.3 CURLOPT_SSH_PRIVATE_KEYFILE.3 CURLOPT_SSH_PUBLIC_KEYFILE.3 CURLOPT_SSLCERT.3 CURLOPT_SSLCERTTYPE.3 CURLOPT_SSLENGINE.3 CURLOPT_SSLENGINE_DEFAULT.3 CURLOPT_SSLKEY.3 CURLOPT_SSLKEYTYPE.3 CURLOPT_SSLVERSION.3 CURLOPT_SSL_CIPHER_LIST.3 CURLOPT_SSL_CTX_DATA.3 CURLOPT_SSL_CTX_FUNCTION.3 CURLOPT_SSL_ENABLE_ALPN.3 CURLOPT_SSL_ENABLE_NPN.3 CURLOPT_SSL_FALSESTART.3 CURLOPT_SSL_OPTIONS.3 CURLOPT_SSL_SESSIONID_CACHE.3 CURLOPT_SSL_VERIFYHOST.3 CURLOPT_SSL_VERIFYPEER.3 CURLOPT_SSL_VERIFYSTATUS.3 CURLOPT_STDERR.3 CURLOPT_STREAM_DEPENDS.3 CURLOPT_STREAM_DEPENDS_E.3 CURLOPT_STREAM_WEIGHT.3 CURLOPT_SUPPRESS_CONNECT_HEADERS.3 CURLOPT_TCP_FASTOPEN.3 CURLOPT_TCP_KEEPALIVE.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 CURLOPT_TCP_KEEPIDLE.3 CURLOPT_TCP_KEEPINTVL.3 CURLOPT_TCP_NODELAY.3 CURLOPT_TELNETOPTIONS.3 CURLOPT_TFTP_BLKSIZE.3 CURLOPT_TFTP_NO_OPTIONS.3 CURLOPT_TIMECONDITION.3 CURLOPT_TIMEOUT.3 CURLOPT_TIMEOUT_MS.3 CURLOPT_TIMEVALUE.3 CURLOPT_TLSAUTH_PASSWORD.3 CURLOPT_TLSAUTH_TYPE.3 CURLOPT_TLSAUTH_USERNAME.3 CURLOPT_TRANSFERTEXT.3 CURLOPT_TRANSFER_ENCODING.3 CURLOPT_UNIX_SOCKET_PATH.3 CURLOPT_UNRESTRICTED_AUTH.3 CURLOPT_UPLOAD.3 CURLOPT_URL.3 CURLOPT_USERAGENT.3 CURLOPT_USERNAME.3 CURLOPT_USERPWD.3 CURLOPT_USE_SSL.3 CURLOPT_VERBOSE.3 CURLOPT_WILDCARDMATCH.3 CURLOPT_WRITEDATA.3 CURLOPT_WRITEFUNCTION.3 CURLOPT_XFERINFODATA.3 CURLOPT_XFERINFOFUNCTION.3 CURLOPT_XOAUTH2_BEARER.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
make[9]: Nothing to be done for `install-exec-am'.
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/share/aclocal'
/usr/local/bin/ginstall -c -m 644 libcurl.m4 '/Users/euphorbium/experiments/Rack/share/aclocal'
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 curl_easy_cleanup.3 curl_easy_getinfo.3 curl_easy_init.3 curl_easy_perform.3 curl_easy_setopt.3 curl_easy_duphandle.3 curl_formadd.3 curl_formfree.3 curl_getdate.3 curl_getenv.3 curl_slist_append.3 curl_slist_free_all.3 curl_version.3 curl_version_info.3 curl_escape.3 curl_unescape.3 curl_free.3 curl_strequal.3 curl_mprintf.3 curl_global_init.3 curl_global_cleanup.3 curl_multi_add_handle.3 curl_multi_cleanup.3 curl_multi_fdset.3 curl_multi_info_read.3 curl_multi_init.3 curl_multi_perform.3 curl_multi_remove_handle.3 curl_share_cleanup.3 curl_share_init.3 curl_share_setopt.3 libcurl.3 libcurl-easy.3 libcurl-multi.3 libcurl-share.3 libcurl-errors.3 curl_easy_strerror.3 curl_multi_strerror.3 curl_share_strerror.3 curl_global_init_mem.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 libcurl-tutorial.3 curl_easy_reset.3 curl_easy_escape.3 curl_easy_unescape.3 curl_multi_setopt.3 curl_multi_socket.3 curl_multi_timeout.3 curl_formget.3 curl_multi_assign.3 curl_easy_pause.3 curl_easy_recv.3 curl_easy_send.3 curl_multi_socket_action.3 curl_multi_wait.3 libcurl-symbols.3 libcurl-thread.3 curl_multi_socket_all.3 '/Users/euphorbium/experiments/Rack/share/man/man3'
Making install in .
make[8]: Nothing to be done for `install-exec-am'.
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/share/man/man1'
/usr/local/bin/ginstall -c -m 644 curl-config.1 /Users/euphorbium/experiments/Rack/dep/curl-7.54.1/docs/curl.1 '/Users/euphorbium/experiments/Rack/share/man/man1'
Making install in cmdline-opts
make[8]: Nothing to be done for `install-exec-am'.
make[8]: Nothing to be done for `install-data-am'.
wget -nc https://nih.at/libzip/libzip-1.2.0.tar.gz
--2017-09-22 12:10:34-- https://nih.at/libzip/libzip-1.2.0.tar.gz
Resolving nih.at... 89.188.9.113
Connecting to nih.at|89.188.9.113|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1514966 (1.4M) [application/x-gzip]
Saving to: 'libzip-1.2.0.tar.gz'
0K .......... .......... .......... .......... .......... 3% 418K 3s
50K .......... .......... .......... .......... .......... 6% 2.08M 2s
100K .......... .......... .......... .......... .......... 10% 1.48M 2s
150K .......... .......... .......... .......... .......... 13% 3.63M 1s
200K .......... .......... .......... .......... .......... 16% 3.70M 1s
250K .......... .......... .......... .......... .......... 20% 1.80M 1s
300K .......... .......... .......... .......... .......... 23% 3.05M 1s
350K .......... .......... .......... .......... .......... 27% 4.27M 1s
400K .......... .......... .......... .......... .......... 30% 3.04M 1s
450K .......... .......... .......... .......... .......... 33% 3.89M 1s
500K .......... .......... .......... .......... .......... 37% 2.37M 1s
550K .......... .......... .......... .......... .......... 40% 4.13M 0s
600K .......... .......... .......... .......... .......... 43% 3.77M 0s
650K .......... .......... .......... .......... .......... 47% 4.39M 0s
700K .......... .......... .......... .......... .......... 50% 3.76M 0s
750K .......... .......... .......... .......... .......... 54% 3.96M 0s
800K .......... .......... .......... .......... .......... 57% 2.01M 0s
850K .......... .......... .......... .......... .......... 60% 4.15M 0s
900K .......... .......... .......... .......... .......... 64% 4.07M 0s
950K .......... .......... .......... .......... .......... 67% 4.14M 0s
1000K .......... .......... .......... .......... .......... 70% 3.80M 0s
1050K .......... .......... .......... .......... .......... 74% 1.88M 0s
1100K .......... .......... .......... .......... .......... 77% 4.27M 0s
1150K .......... .......... .......... .......... .......... 81% 4.08M 0s
1200K .......... .......... .......... .......... .......... 84% 3.18M 0s
1250K .......... .......... .......... .......... .......... 87% 1.97M 0s
1300K .......... .......... .......... .......... .......... 91% 3.99M 0s
1350K .......... .......... .......... .......... .......... 94% 3.98M 0s
1400K .......... .......... .......... .......... .......... 98% 3.95M 0s
1450K .......... .......... ......... 100% 5.59M=0.6s
2017-09-22 12:10:35 (2.53 MB/s) - 'libzip-1.2.0.tar.gz' saved [1514966/1514966]
tar xf libzip-1.2.0.tar.gz
cd libzip-1.2.0 && ./configure --prefix="/Users/euphorbium/experiments/Rack"
checking for a BSD-compatible install... /usr/local/bin/ginstall -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking build system type... x86_64-apple-darwin16.7.0
checking host system type... x86_64-apple-darwin16.7.0
checking for gcc... gcc
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 gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/local/bin/grep
checking for egrep... /usr/local/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 whether byte ordering is bigendian... no
checking for main in -lz... yes
checking new ZLIB version... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/local/bin/sed
checking for fgrep... /usr/local/bin/grep -F
checking for ld used by gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
checking if the linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) is GNU ld... no
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 196608
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-apple-darwin16.7.0 file names to x86_64-apple-darwin16.7.0 format... func_convert_file_noop
checking how to convert x86_64-apple-darwin16.7.0 file names to toolchain format... func_convert_file_noop
checking for /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... no
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking for dsymutil... dsymutil
checking for nmedit... nmedit
checking for lipo... lipo
checking for otool... otool
checking for otool64... no
checking for -single_module linker flag... yes
checking for -exported_symbols_list linker flag... yes
checking for -force_load linker flag... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... yes
checking for gcc option to produce PIC... -fno-common -DPIC
checking if gcc PIC flag -fno-common -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... darwin16.7.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for _close... no
checking for _dup... no
checking for _fdopen... no
checking for _fileno... no
checking for _open... no
checking for _setmode... no
checking for _snprintf... no
checking for _strdup... no
checking for _stricmp... no
checking for _strtoi64... no
checking for _strtoui64... no
checking for explicit_bzero... no
checking for explicit_memset... no
checking for fileno... yes
checking for fseeko... yes
checking for ftello... yes
checking for getopt... yes
checking for getprogname... yes
checking for open... yes
checking for setmode... yes
checking for snprintf... yes
checking for strcasecmp... yes
checking for strdup... yes
checking for stricmp... no
checking for strtoll... yes
checking for strtoull... yes
checking for mkstemp... yes
checking for dlsym in -ldl... yes
checking if libc defines __progname... yes
checking whether we are building for a Win32 host... no
checking fts.h usability... yes
checking fts.h presence... yes
checking for fts.h... yes
checking stdbool.h usability... yes
checking stdbool.h presence... yes
checking for stdbool.h... yes
checking for strings.h... (cached) yes
checking for unistd.h... (cached) yes
checking for int8_t... yes
checking for int16_t... yes
checking for int32_t... yes
checking for int64_t... yes
checking for uint8_t... yes
checking for uint16_t... yes
checking for uint32_t... yes
checking for uint64_t... yes
checking for ssize_t... yes
checking size of short... 2
checking size of int... 4
checking size of long... 8
checking size of long long... 8
checking size of off_t... 8
checking size of size_t... 8
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for simple visibility declarations... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libzip.pc
config.status: creating libzip-uninstalled.pc
config.status: creating examples/Makefile
config.status: creating man/Makefile
config.status: creating lib/Makefile
config.status: creating lib/gladman-fcrypt/Makefile
config.status: creating regress/Makefile
config.status: creating src/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C libzip-1.2.0
/Applications/Xcode.app/Contents/Developer/usr/bin/make all-recursive
Making all in lib
sh ./make_zipconf.sh ../config.h zipconf.h
/Applications/Xcode.app/Contents/Developer/usr/bin/make all-recursive
Making all in gladman-fcrypt
make[6]: Nothing to be done for `all'.
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_random_unix.lo -MD -MP -MF .deps/libzip_la-zip_random_unix.Tpo -c -o libzip_la-zip_random_unix.lo `test -f 'zip_random_unix.c' || echo './'`zip_random_unix.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_random_unix.lo -MD -MP -MF .deps/libzip_la-zip_random_unix.Tpo -c zip_random_unix.c -fno-common -DPIC -o .libs/libzip_la-zip_random_unix.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_random_unix.lo -MD -MP -MF .deps/libzip_la-zip_random_unix.Tpo -c zip_random_unix.c -o libzip_la-zip_random_unix.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_random_unix.Tpo .deps/libzip_la-zip_random_unix.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_file.lo -MD -MP -MF .deps/libzip_la-zip_source_file.Tpo -c -o libzip_la-zip_source_file.lo `test -f 'zip_source_file.c' || echo './'`zip_source_file.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_file.lo -MD -MP -MF .deps/libzip_la-zip_source_file.Tpo -c zip_source_file.c -fno-common -DPIC -o .libs/libzip_la-zip_source_file.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_file.lo -MD -MP -MF .deps/libzip_la-zip_source_file.Tpo -c zip_source_file.c -o libzip_la-zip_source_file.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_file.Tpo .deps/libzip_la-zip_source_file.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-gladman-fcrypt.lo -MD -MP -MF .deps/libzip_la-gladman-fcrypt.Tpo -c -o libzip_la-gladman-fcrypt.lo `test -f 'gladman-fcrypt.c' || echo './'`gladman-fcrypt.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-gladman-fcrypt.lo -MD -MP -MF .deps/libzip_la-gladman-fcrypt.Tpo -c gladman-fcrypt.c -fno-common -DPIC -o .libs/libzip_la-gladman-fcrypt.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-gladman-fcrypt.lo -MD -MP -MF .deps/libzip_la-gladman-fcrypt.Tpo -c gladman-fcrypt.c -o libzip_la-gladman-fcrypt.o >/dev/null 2>&1
mv -f .deps/libzip_la-gladman-fcrypt.Tpo .deps/libzip_la-gladman-fcrypt.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_add.lo -MD -MP -MF .deps/libzip_la-zip_add.Tpo -c -o libzip_la-zip_add.lo `test -f 'zip_add.c' || echo './'`zip_add.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_add.lo -MD -MP -MF .deps/libzip_la-zip_add.Tpo -c zip_add.c -fno-common -DPIC -o .libs/libzip_la-zip_add.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_add.lo -MD -MP -MF .deps/libzip_la-zip_add.Tpo -c zip_add.c -o libzip_la-zip_add.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_add.Tpo .deps/libzip_la-zip_add.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_add_dir.lo -MD -MP -MF .deps/libzip_la-zip_add_dir.Tpo -c -o libzip_la-zip_add_dir.lo `test -f 'zip_add_dir.c' || echo './'`zip_add_dir.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_add_dir.lo -MD -MP -MF .deps/libzip_la-zip_add_dir.Tpo -c zip_add_dir.c -fno-common -DPIC -o .libs/libzip_la-zip_add_dir.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_add_dir.lo -MD -MP -MF .deps/libzip_la-zip_add_dir.Tpo -c zip_add_dir.c -o libzip_la-zip_add_dir.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_add_dir.Tpo .deps/libzip_la-zip_add_dir.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_add_entry.lo -MD -MP -MF .deps/libzip_la-zip_add_entry.Tpo -c -o libzip_la-zip_add_entry.lo `test -f 'zip_add_entry.c' || echo './'`zip_add_entry.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_add_entry.lo -MD -MP -MF .deps/libzip_la-zip_add_entry.Tpo -c zip_add_entry.c -fno-common -DPIC -o .libs/libzip_la-zip_add_entry.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_add_entry.lo -MD -MP -MF .deps/libzip_la-zip_add_entry.Tpo -c zip_add_entry.c -o libzip_la-zip_add_entry.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_add_entry.Tpo .deps/libzip_la-zip_add_entry.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_buffer.lo -MD -MP -MF .deps/libzip_la-zip_buffer.Tpo -c -o libzip_la-zip_buffer.lo `test -f 'zip_buffer.c' || echo './'`zip_buffer.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_buffer.lo -MD -MP -MF .deps/libzip_la-zip_buffer.Tpo -c zip_buffer.c -fno-common -DPIC -o .libs/libzip_la-zip_buffer.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_buffer.lo -MD -MP -MF .deps/libzip_la-zip_buffer.Tpo -c zip_buffer.c -o libzip_la-zip_buffer.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_buffer.Tpo .deps/libzip_la-zip_buffer.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_close.lo -MD -MP -MF .deps/libzip_la-zip_close.Tpo -c -o libzip_la-zip_close.lo `test -f 'zip_close.c' || echo './'`zip_close.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_close.lo -MD -MP -MF .deps/libzip_la-zip_close.Tpo -c zip_close.c -fno-common -DPIC -o .libs/libzip_la-zip_close.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_close.lo -MD -MP -MF .deps/libzip_la-zip_close.Tpo -c zip_close.c -o libzip_la-zip_close.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_close.Tpo .deps/libzip_la-zip_close.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_delete.lo -MD -MP -MF .deps/libzip_la-zip_delete.Tpo -c -o libzip_la-zip_delete.lo `test -f 'zip_delete.c' || echo './'`zip_delete.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_delete.lo -MD -MP -MF .deps/libzip_la-zip_delete.Tpo -c zip_delete.c -fno-common -DPIC -o .libs/libzip_la-zip_delete.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_delete.lo -MD -MP -MF .deps/libzip_la-zip_delete.Tpo -c zip_delete.c -o libzip_la-zip_delete.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_delete.Tpo .deps/libzip_la-zip_delete.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_dir_add.lo -MD -MP -MF .deps/libzip_la-zip_dir_add.Tpo -c -o libzip_la-zip_dir_add.lo `test -f 'zip_dir_add.c' || echo './'`zip_dir_add.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_dir_add.lo -MD -MP -MF .deps/libzip_la-zip_dir_add.Tpo -c zip_dir_add.c -fno-common -DPIC -o .libs/libzip_la-zip_dir_add.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_dir_add.lo -MD -MP -MF .deps/libzip_la-zip_dir_add.Tpo -c zip_dir_add.c -o libzip_la-zip_dir_add.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_dir_add.Tpo .deps/libzip_la-zip_dir_add.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_dirent.lo -MD -MP -MF .deps/libzip_la-zip_dirent.Tpo -c -o libzip_la-zip_dirent.lo `test -f 'zip_dirent.c' || echo './'`zip_dirent.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_dirent.lo -MD -MP -MF .deps/libzip_la-zip_dirent.Tpo -c zip_dirent.c -fno-common -DPIC -o .libs/libzip_la-zip_dirent.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_dirent.lo -MD -MP -MF .deps/libzip_la-zip_dirent.Tpo -c zip_dirent.c -o libzip_la-zip_dirent.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_dirent.Tpo .deps/libzip_la-zip_dirent.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_discard.lo -MD -MP -MF .deps/libzip_la-zip_discard.Tpo -c -o libzip_la-zip_discard.lo `test -f 'zip_discard.c' || echo './'`zip_discard.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_discard.lo -MD -MP -MF .deps/libzip_la-zip_discard.Tpo -c zip_discard.c -fno-common -DPIC -o .libs/libzip_la-zip_discard.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_discard.lo -MD -MP -MF .deps/libzip_la-zip_discard.Tpo -c zip_discard.c -o libzip_la-zip_discard.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_discard.Tpo .deps/libzip_la-zip_discard.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_entry.lo -MD -MP -MF .deps/libzip_la-zip_entry.Tpo -c -o libzip_la-zip_entry.lo `test -f 'zip_entry.c' || echo './'`zip_entry.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_entry.lo -MD -MP -MF .deps/libzip_la-zip_entry.Tpo -c zip_entry.c -fno-common -DPIC -o .libs/libzip_la-zip_entry.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_entry.lo -MD -MP -MF .deps/libzip_la-zip_entry.Tpo -c zip_entry.c -o libzip_la-zip_entry.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_entry.Tpo .deps/libzip_la-zip_entry.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_err_str.lo -MD -MP -MF .deps/libzip_la-zip_err_str.Tpo -c -o libzip_la-zip_err_str.lo `test -f 'zip_err_str.c' || echo './'`zip_err_str.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_err_str.lo -MD -MP -MF .deps/libzip_la-zip_err_str.Tpo -c zip_err_str.c -fno-common -DPIC -o .libs/libzip_la-zip_err_str.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_err_str.lo -MD -MP -MF .deps/libzip_la-zip_err_str.Tpo -c zip_err_str.c -o libzip_la-zip_err_str.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_err_str.Tpo .deps/libzip_la-zip_err_str.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error.lo -MD -MP -MF .deps/libzip_la-zip_error.Tpo -c -o libzip_la-zip_error.lo `test -f 'zip_error.c' || echo './'`zip_error.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error.lo -MD -MP -MF .deps/libzip_la-zip_error.Tpo -c zip_error.c -fno-common -DPIC -o .libs/libzip_la-zip_error.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error.lo -MD -MP -MF .deps/libzip_la-zip_error.Tpo -c zip_error.c -o libzip_la-zip_error.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_error.Tpo .deps/libzip_la-zip_error.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error_clear.lo -MD -MP -MF .deps/libzip_la-zip_error_clear.Tpo -c -o libzip_la-zip_error_clear.lo `test -f 'zip_error_clear.c' || echo './'`zip_error_clear.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error_clear.lo -MD -MP -MF .deps/libzip_la-zip_error_clear.Tpo -c zip_error_clear.c -fno-common -DPIC -o .libs/libzip_la-zip_error_clear.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error_clear.lo -MD -MP -MF .deps/libzip_la-zip_error_clear.Tpo -c zip_error_clear.c -o libzip_la-zip_error_clear.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_error_clear.Tpo .deps/libzip_la-zip_error_clear.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error_get.lo -MD -MP -MF .deps/libzip_la-zip_error_get.Tpo -c -o libzip_la-zip_error_get.lo `test -f 'zip_error_get.c' || echo './'`zip_error_get.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error_get.lo -MD -MP -MF .deps/libzip_la-zip_error_get.Tpo -c zip_error_get.c -fno-common -DPIC -o .libs/libzip_la-zip_error_get.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error_get.lo -MD -MP -MF .deps/libzip_la-zip_error_get.Tpo -c zip_error_get.c -o libzip_la-zip_error_get.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_error_get.Tpo .deps/libzip_la-zip_error_get.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error_get_sys_type.lo -MD -MP -MF .deps/libzip_la-zip_error_get_sys_type.Tpo -c -o libzip_la-zip_error_get_sys_type.lo `test -f 'zip_error_get_sys_type.c' || echo './'`zip_error_get_sys_type.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error_get_sys_type.lo -MD -MP -MF .deps/libzip_la-zip_error_get_sys_type.Tpo -c zip_error_get_sys_type.c -fno-common -DPIC -o .libs/libzip_la-zip_error_get_sys_type.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error_get_sys_type.lo -MD -MP -MF .deps/libzip_la-zip_error_get_sys_type.Tpo -c zip_error_get_sys_type.c -o libzip_la-zip_error_get_sys_type.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_error_get_sys_type.Tpo .deps/libzip_la-zip_error_get_sys_type.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error_strerror.lo -MD -MP -MF .deps/libzip_la-zip_error_strerror.Tpo -c -o libzip_la-zip_error_strerror.lo `test -f 'zip_error_strerror.c' || echo './'`zip_error_strerror.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error_strerror.lo -MD -MP -MF .deps/libzip_la-zip_error_strerror.Tpo -c zip_error_strerror.c -fno-common -DPIC -o .libs/libzip_la-zip_error_strerror.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error_strerror.lo -MD -MP -MF .deps/libzip_la-zip_error_strerror.Tpo -c zip_error_strerror.c -o libzip_la-zip_error_strerror.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_error_strerror.Tpo .deps/libzip_la-zip_error_strerror.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error_to_str.lo -MD -MP -MF .deps/libzip_la-zip_error_to_str.Tpo -c -o libzip_la-zip_error_to_str.lo `test -f 'zip_error_to_str.c' || echo './'`zip_error_to_str.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error_to_str.lo -MD -MP -MF .deps/libzip_la-zip_error_to_str.Tpo -c zip_error_to_str.c -fno-common -DPIC -o .libs/libzip_la-zip_error_to_str.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_error_to_str.lo -MD -MP -MF .deps/libzip_la-zip_error_to_str.Tpo -c zip_error_to_str.c -o libzip_la-zip_error_to_str.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_error_to_str.Tpo .deps/libzip_la-zip_error_to_str.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_extra_field.lo -MD -MP -MF .deps/libzip_la-zip_extra_field.Tpo -c -o libzip_la-zip_extra_field.lo `test -f 'zip_extra_field.c' || echo './'`zip_extra_field.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_extra_field.lo -MD -MP -MF .deps/libzip_la-zip_extra_field.Tpo -c zip_extra_field.c -fno-common -DPIC -o .libs/libzip_la-zip_extra_field.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_extra_field.lo -MD -MP -MF .deps/libzip_la-zip_extra_field.Tpo -c zip_extra_field.c -o libzip_la-zip_extra_field.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_extra_field.Tpo .deps/libzip_la-zip_extra_field.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_extra_field_api.lo -MD -MP -MF .deps/libzip_la-zip_extra_field_api.Tpo -c -o libzip_la-zip_extra_field_api.lo `test -f 'zip_extra_field_api.c' || echo './'`zip_extra_field_api.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_extra_field_api.lo -MD -MP -MF .deps/libzip_la-zip_extra_field_api.Tpo -c zip_extra_field_api.c -fno-common -DPIC -o .libs/libzip_la-zip_extra_field_api.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_extra_field_api.lo -MD -MP -MF .deps/libzip_la-zip_extra_field_api.Tpo -c zip_extra_field_api.c -o libzip_la-zip_extra_field_api.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_extra_field_api.Tpo .deps/libzip_la-zip_extra_field_api.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fclose.lo -MD -MP -MF .deps/libzip_la-zip_fclose.Tpo -c -o libzip_la-zip_fclose.lo `test -f 'zip_fclose.c' || echo './'`zip_fclose.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fclose.lo -MD -MP -MF .deps/libzip_la-zip_fclose.Tpo -c zip_fclose.c -fno-common -DPIC -o .libs/libzip_la-zip_fclose.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fclose.lo -MD -MP -MF .deps/libzip_la-zip_fclose.Tpo -c zip_fclose.c -o libzip_la-zip_fclose.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_fclose.Tpo .deps/libzip_la-zip_fclose.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fdopen.lo -MD -MP -MF .deps/libzip_la-zip_fdopen.Tpo -c -o libzip_la-zip_fdopen.lo `test -f 'zip_fdopen.c' || echo './'`zip_fdopen.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fdopen.lo -MD -MP -MF .deps/libzip_la-zip_fdopen.Tpo -c zip_fdopen.c -fno-common -DPIC -o .libs/libzip_la-zip_fdopen.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fdopen.lo -MD -MP -MF .deps/libzip_la-zip_fdopen.Tpo -c zip_fdopen.c -o libzip_la-zip_fdopen.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_fdopen.Tpo .deps/libzip_la-zip_fdopen.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_add.lo -MD -MP -MF .deps/libzip_la-zip_file_add.Tpo -c -o libzip_la-zip_file_add.lo `test -f 'zip_file_add.c' || echo './'`zip_file_add.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_add.lo -MD -MP -MF .deps/libzip_la-zip_file_add.Tpo -c zip_file_add.c -fno-common -DPIC -o .libs/libzip_la-zip_file_add.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_add.lo -MD -MP -MF .deps/libzip_la-zip_file_add.Tpo -c zip_file_add.c -o libzip_la-zip_file_add.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_file_add.Tpo .deps/libzip_la-zip_file_add.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_error_clear.lo -MD -MP -MF .deps/libzip_la-zip_file_error_clear.Tpo -c -o libzip_la-zip_file_error_clear.lo `test -f 'zip_file_error_clear.c' || echo './'`zip_file_error_clear.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_error_clear.lo -MD -MP -MF .deps/libzip_la-zip_file_error_clear.Tpo -c zip_file_error_clear.c -fno-common -DPIC -o .libs/libzip_la-zip_file_error_clear.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_error_clear.lo -MD -MP -MF .deps/libzip_la-zip_file_error_clear.Tpo -c zip_file_error_clear.c -o libzip_la-zip_file_error_clear.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_file_error_clear.Tpo .deps/libzip_la-zip_file_error_clear.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_error_get.lo -MD -MP -MF .deps/libzip_la-zip_file_error_get.Tpo -c -o libzip_la-zip_file_error_get.lo `test -f 'zip_file_error_get.c' || echo './'`zip_file_error_get.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_error_get.lo -MD -MP -MF .deps/libzip_la-zip_file_error_get.Tpo -c zip_file_error_get.c -fno-common -DPIC -o .libs/libzip_la-zip_file_error_get.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_error_get.lo -MD -MP -MF .deps/libzip_la-zip_file_error_get.Tpo -c zip_file_error_get.c -o libzip_la-zip_file_error_get.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_file_error_get.Tpo .deps/libzip_la-zip_file_error_get.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_get_comment.lo -MD -MP -MF .deps/libzip_la-zip_file_get_comment.Tpo -c -o libzip_la-zip_file_get_comment.lo `test -f 'zip_file_get_comment.c' || echo './'`zip_file_get_comment.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_get_comment.lo -MD -MP -MF .deps/libzip_la-zip_file_get_comment.Tpo -c zip_file_get_comment.c -fno-common -DPIC -o .libs/libzip_la-zip_file_get_comment.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_get_comment.lo -MD -MP -MF .deps/libzip_la-zip_file_get_comment.Tpo -c zip_file_get_comment.c -o libzip_la-zip_file_get_comment.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_file_get_comment.Tpo .deps/libzip_la-zip_file_get_comment.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_get_external_attributes.lo -MD -MP -MF .deps/libzip_la-zip_file_get_external_attributes.Tpo -c -o libzip_la-zip_file_get_external_attributes.lo `test -f 'zip_file_get_external_attributes.c' || echo './'`zip_file_get_external_attributes.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_get_external_attributes.lo -MD -MP -MF .deps/libzip_la-zip_file_get_external_attributes.Tpo -c zip_file_get_external_attributes.c -fno-common -DPIC -o .libs/libzip_la-zip_file_get_external_attributes.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_get_external_attributes.lo -MD -MP -MF .deps/libzip_la-zip_file_get_external_attributes.Tpo -c zip_file_get_external_attributes.c -o libzip_la-zip_file_get_external_attributes.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_file_get_external_attributes.Tpo .deps/libzip_la-zip_file_get_external_attributes.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_get_offset.lo -MD -MP -MF .deps/libzip_la-zip_file_get_offset.Tpo -c -o libzip_la-zip_file_get_offset.lo `test -f 'zip_file_get_offset.c' || echo './'`zip_file_get_offset.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_get_offset.lo -MD -MP -MF .deps/libzip_la-zip_file_get_offset.Tpo -c zip_file_get_offset.c -fno-common -DPIC -o .libs/libzip_la-zip_file_get_offset.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_get_offset.lo -MD -MP -MF .deps/libzip_la-zip_file_get_offset.Tpo -c zip_file_get_offset.c -o libzip_la-zip_file_get_offset.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_file_get_offset.Tpo .deps/libzip_la-zip_file_get_offset.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_rename.lo -MD -MP -MF .deps/libzip_la-zip_file_rename.Tpo -c -o libzip_la-zip_file_rename.lo `test -f 'zip_file_rename.c' || echo './'`zip_file_rename.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_rename.lo -MD -MP -MF .deps/libzip_la-zip_file_rename.Tpo -c zip_file_rename.c -fno-common -DPIC -o .libs/libzip_la-zip_file_rename.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_rename.lo -MD -MP -MF .deps/libzip_la-zip_file_rename.Tpo -c zip_file_rename.c -o libzip_la-zip_file_rename.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_file_rename.Tpo .deps/libzip_la-zip_file_rename.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_replace.lo -MD -MP -MF .deps/libzip_la-zip_file_replace.Tpo -c -o libzip_la-zip_file_replace.lo `test -f 'zip_file_replace.c' || echo './'`zip_file_replace.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_replace.lo -MD -MP -MF .deps/libzip_la-zip_file_replace.Tpo -c zip_file_replace.c -fno-common -DPIC -o .libs/libzip_la-zip_file_replace.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_replace.lo -MD -MP -MF .deps/libzip_la-zip_file_replace.Tpo -c zip_file_replace.c -o libzip_la-zip_file_replace.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_file_replace.Tpo .deps/libzip_la-zip_file_replace.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_set_comment.lo -MD -MP -MF .deps/libzip_la-zip_file_set_comment.Tpo -c -o libzip_la-zip_file_set_comment.lo `test -f 'zip_file_set_comment.c' || echo './'`zip_file_set_comment.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_set_comment.lo -MD -MP -MF .deps/libzip_la-zip_file_set_comment.Tpo -c zip_file_set_comment.c -fno-common -DPIC -o .libs/libzip_la-zip_file_set_comment.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_set_comment.lo -MD -MP -MF .deps/libzip_la-zip_file_set_comment.Tpo -c zip_file_set_comment.c -o libzip_la-zip_file_set_comment.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_file_set_comment.Tpo .deps/libzip_la-zip_file_set_comment.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_set_encryption.lo -MD -MP -MF .deps/libzip_la-zip_file_set_encryption.Tpo -c -o libzip_la-zip_file_set_encryption.lo `test -f 'zip_file_set_encryption.c' || echo './'`zip_file_set_encryption.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_set_encryption.lo -MD -MP -MF .deps/libzip_la-zip_file_set_encryption.Tpo -c zip_file_set_encryption.c -fno-common -DPIC -o .libs/libzip_la-zip_file_set_encryption.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_set_encryption.lo -MD -MP -MF .deps/libzip_la-zip_file_set_encryption.Tpo -c zip_file_set_encryption.c -o libzip_la-zip_file_set_encryption.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_file_set_encryption.Tpo .deps/libzip_la-zip_file_set_encryption.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_set_external_attributes.lo -MD -MP -MF .deps/libzip_la-zip_file_set_external_attributes.Tpo -c -o libzip_la-zip_file_set_external_attributes.lo `test -f 'zip_file_set_external_attributes.c' || echo './'`zip_file_set_external_attributes.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_set_external_attributes.lo -MD -MP -MF .deps/libzip_la-zip_file_set_external_attributes.Tpo -c zip_file_set_external_attributes.c -fno-common -DPIC -o .libs/libzip_la-zip_file_set_external_attributes.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_set_external_attributes.lo -MD -MP -MF .deps/libzip_la-zip_file_set_external_attributes.Tpo -c zip_file_set_external_attributes.c -o libzip_la-zip_file_set_external_attributes.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_file_set_external_attributes.Tpo .deps/libzip_la-zip_file_set_external_attributes.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_set_mtime.lo -MD -MP -MF .deps/libzip_la-zip_file_set_mtime.Tpo -c -o libzip_la-zip_file_set_mtime.lo `test -f 'zip_file_set_mtime.c' || echo './'`zip_file_set_mtime.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_set_mtime.lo -MD -MP -MF .deps/libzip_la-zip_file_set_mtime.Tpo -c zip_file_set_mtime.c -fno-common -DPIC -o .libs/libzip_la-zip_file_set_mtime.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_set_mtime.lo -MD -MP -MF .deps/libzip_la-zip_file_set_mtime.Tpo -c zip_file_set_mtime.c -o libzip_la-zip_file_set_mtime.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_file_set_mtime.Tpo .deps/libzip_la-zip_file_set_mtime.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_strerror.lo -MD -MP -MF .deps/libzip_la-zip_file_strerror.Tpo -c -o libzip_la-zip_file_strerror.lo `test -f 'zip_file_strerror.c' || echo './'`zip_file_strerror.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_strerror.lo -MD -MP -MF .deps/libzip_la-zip_file_strerror.Tpo -c zip_file_strerror.c -fno-common -DPIC -o .libs/libzip_la-zip_file_strerror.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_file_strerror.lo -MD -MP -MF .deps/libzip_la-zip_file_strerror.Tpo -c zip_file_strerror.c -o libzip_la-zip_file_strerror.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_file_strerror.Tpo .deps/libzip_la-zip_file_strerror.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_filerange_crc.lo -MD -MP -MF .deps/libzip_la-zip_filerange_crc.Tpo -c -o libzip_la-zip_filerange_crc.lo `test -f 'zip_filerange_crc.c' || echo './'`zip_filerange_crc.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_filerange_crc.lo -MD -MP -MF .deps/libzip_la-zip_filerange_crc.Tpo -c zip_filerange_crc.c -fno-common -DPIC -o .libs/libzip_la-zip_filerange_crc.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_filerange_crc.lo -MD -MP -MF .deps/libzip_la-zip_filerange_crc.Tpo -c zip_filerange_crc.c -o libzip_la-zip_filerange_crc.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_filerange_crc.Tpo .deps/libzip_la-zip_filerange_crc.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fopen.lo -MD -MP -MF .deps/libzip_la-zip_fopen.Tpo -c -o libzip_la-zip_fopen.lo `test -f 'zip_fopen.c' || echo './'`zip_fopen.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fopen.lo -MD -MP -MF .deps/libzip_la-zip_fopen.Tpo -c zip_fopen.c -fno-common -DPIC -o .libs/libzip_la-zip_fopen.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fopen.lo -MD -MP -MF .deps/libzip_la-zip_fopen.Tpo -c zip_fopen.c -o libzip_la-zip_fopen.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_fopen.Tpo .deps/libzip_la-zip_fopen.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fopen_encrypted.lo -MD -MP -MF .deps/libzip_la-zip_fopen_encrypted.Tpo -c -o libzip_la-zip_fopen_encrypted.lo `test -f 'zip_fopen_encrypted.c' || echo './'`zip_fopen_encrypted.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fopen_encrypted.lo -MD -MP -MF .deps/libzip_la-zip_fopen_encrypted.Tpo -c zip_fopen_encrypted.c -fno-common -DPIC -o .libs/libzip_la-zip_fopen_encrypted.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fopen_encrypted.lo -MD -MP -MF .deps/libzip_la-zip_fopen_encrypted.Tpo -c zip_fopen_encrypted.c -o libzip_la-zip_fopen_encrypted.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_fopen_encrypted.Tpo .deps/libzip_la-zip_fopen_encrypted.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fopen_index.lo -MD -MP -MF .deps/libzip_la-zip_fopen_index.Tpo -c -o libzip_la-zip_fopen_index.lo `test -f 'zip_fopen_index.c' || echo './'`zip_fopen_index.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fopen_index.lo -MD -MP -MF .deps/libzip_la-zip_fopen_index.Tpo -c zip_fopen_index.c -fno-common -DPIC -o .libs/libzip_la-zip_fopen_index.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fopen_index.lo -MD -MP -MF .deps/libzip_la-zip_fopen_index.Tpo -c zip_fopen_index.c -o libzip_la-zip_fopen_index.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_fopen_index.Tpo .deps/libzip_la-zip_fopen_index.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fopen_index_encrypted.lo -MD -MP -MF .deps/libzip_la-zip_fopen_index_encrypted.Tpo -c -o libzip_la-zip_fopen_index_encrypted.lo `test -f 'zip_fopen_index_encrypted.c' || echo './'`zip_fopen_index_encrypted.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fopen_index_encrypted.lo -MD -MP -MF .deps/libzip_la-zip_fopen_index_encrypted.Tpo -c zip_fopen_index_encrypted.c -fno-common -DPIC -o .libs/libzip_la-zip_fopen_index_encrypted.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fopen_index_encrypted.lo -MD -MP -MF .deps/libzip_la-zip_fopen_index_encrypted.Tpo -c zip_fopen_index_encrypted.c -o libzip_la-zip_fopen_index_encrypted.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_fopen_index_encrypted.Tpo .deps/libzip_la-zip_fopen_index_encrypted.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fread.lo -MD -MP -MF .deps/libzip_la-zip_fread.Tpo -c -o libzip_la-zip_fread.lo `test -f 'zip_fread.c' || echo './'`zip_fread.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fread.lo -MD -MP -MF .deps/libzip_la-zip_fread.Tpo -c zip_fread.c -fno-common -DPIC -o .libs/libzip_la-zip_fread.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fread.lo -MD -MP -MF .deps/libzip_la-zip_fread.Tpo -c zip_fread.c -o libzip_la-zip_fread.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_fread.Tpo .deps/libzip_la-zip_fread.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fseek.lo -MD -MP -MF .deps/libzip_la-zip_fseek.Tpo -c -o libzip_la-zip_fseek.lo `test -f 'zip_fseek.c' || echo './'`zip_fseek.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fseek.lo -MD -MP -MF .deps/libzip_la-zip_fseek.Tpo -c zip_fseek.c -fno-common -DPIC -o .libs/libzip_la-zip_fseek.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_fseek.lo -MD -MP -MF .deps/libzip_la-zip_fseek.Tpo -c zip_fseek.c -o libzip_la-zip_fseek.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_fseek.Tpo .deps/libzip_la-zip_fseek.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_ftell.lo -MD -MP -MF .deps/libzip_la-zip_ftell.Tpo -c -o libzip_la-zip_ftell.lo `test -f 'zip_ftell.c' || echo './'`zip_ftell.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_ftell.lo -MD -MP -MF .deps/libzip_la-zip_ftell.Tpo -c zip_ftell.c -fno-common -DPIC -o .libs/libzip_la-zip_ftell.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_ftell.lo -MD -MP -MF .deps/libzip_la-zip_ftell.Tpo -c zip_ftell.c -o libzip_la-zip_ftell.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_ftell.Tpo .deps/libzip_la-zip_ftell.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_archive_comment.lo -MD -MP -MF .deps/libzip_la-zip_get_archive_comment.Tpo -c -o libzip_la-zip_get_archive_comment.lo `test -f 'zip_get_archive_comment.c' || echo './'`zip_get_archive_comment.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_archive_comment.lo -MD -MP -MF .deps/libzip_la-zip_get_archive_comment.Tpo -c zip_get_archive_comment.c -fno-common -DPIC -o .libs/libzip_la-zip_get_archive_comment.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_archive_comment.lo -MD -MP -MF .deps/libzip_la-zip_get_archive_comment.Tpo -c zip_get_archive_comment.c -o libzip_la-zip_get_archive_comment.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_get_archive_comment.Tpo .deps/libzip_la-zip_get_archive_comment.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_archive_flag.lo -MD -MP -MF .deps/libzip_la-zip_get_archive_flag.Tpo -c -o libzip_la-zip_get_archive_flag.lo `test -f 'zip_get_archive_flag.c' || echo './'`zip_get_archive_flag.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_archive_flag.lo -MD -MP -MF .deps/libzip_la-zip_get_archive_flag.Tpo -c zip_get_archive_flag.c -fno-common -DPIC -o .libs/libzip_la-zip_get_archive_flag.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_archive_flag.lo -MD -MP -MF .deps/libzip_la-zip_get_archive_flag.Tpo -c zip_get_archive_flag.c -o libzip_la-zip_get_archive_flag.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_get_archive_flag.Tpo .deps/libzip_la-zip_get_archive_flag.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_compression_implementation.lo -MD -MP -MF .deps/libzip_la-zip_get_compression_implementation.Tpo -c -o libzip_la-zip_get_compression_implementation.lo `test -f 'zip_get_compression_implementation.c' || echo './'`zip_get_compression_implementation.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_compression_implementation.lo -MD -MP -MF .deps/libzip_la-zip_get_compression_implementation.Tpo -c zip_get_compression_implementation.c -fno-common -DPIC -o .libs/libzip_la-zip_get_compression_implementation.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_compression_implementation.lo -MD -MP -MF .deps/libzip_la-zip_get_compression_implementation.Tpo -c zip_get_compression_implementation.c -o libzip_la-zip_get_compression_implementation.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_get_compression_implementation.Tpo .deps/libzip_la-zip_get_compression_implementation.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_encryption_implementation.lo -MD -MP -MF .deps/libzip_la-zip_get_encryption_implementation.Tpo -c -o libzip_la-zip_get_encryption_implementation.lo `test -f 'zip_get_encryption_implementation.c' || echo './'`zip_get_encryption_implementation.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_encryption_implementation.lo -MD -MP -MF .deps/libzip_la-zip_get_encryption_implementation.Tpo -c zip_get_encryption_implementation.c -fno-common -DPIC -o .libs/libzip_la-zip_get_encryption_implementation.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_encryption_implementation.lo -MD -MP -MF .deps/libzip_la-zip_get_encryption_implementation.Tpo -c zip_get_encryption_implementation.c -o libzip_la-zip_get_encryption_implementation.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_get_encryption_implementation.Tpo .deps/libzip_la-zip_get_encryption_implementation.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_file_comment.lo -MD -MP -MF .deps/libzip_la-zip_get_file_comment.Tpo -c -o libzip_la-zip_get_file_comment.lo `test -f 'zip_get_file_comment.c' || echo './'`zip_get_file_comment.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_file_comment.lo -MD -MP -MF .deps/libzip_la-zip_get_file_comment.Tpo -c zip_get_file_comment.c -fno-common -DPIC -o .libs/libzip_la-zip_get_file_comment.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_file_comment.lo -MD -MP -MF .deps/libzip_la-zip_get_file_comment.Tpo -c zip_get_file_comment.c -o libzip_la-zip_get_file_comment.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_get_file_comment.Tpo .deps/libzip_la-zip_get_file_comment.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_num_entries.lo -MD -MP -MF .deps/libzip_la-zip_get_num_entries.Tpo -c -o libzip_la-zip_get_num_entries.lo `test -f 'zip_get_num_entries.c' || echo './'`zip_get_num_entries.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_num_entries.lo -MD -MP -MF .deps/libzip_la-zip_get_num_entries.Tpo -c zip_get_num_entries.c -fno-common -DPIC -o .libs/libzip_la-zip_get_num_entries.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_num_entries.lo -MD -MP -MF .deps/libzip_la-zip_get_num_entries.Tpo -c zip_get_num_entries.c -o libzip_la-zip_get_num_entries.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_get_num_entries.Tpo .deps/libzip_la-zip_get_num_entries.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_num_files.lo -MD -MP -MF .deps/libzip_la-zip_get_num_files.Tpo -c -o libzip_la-zip_get_num_files.lo `test -f 'zip_get_num_files.c' || echo './'`zip_get_num_files.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_num_files.lo -MD -MP -MF .deps/libzip_la-zip_get_num_files.Tpo -c zip_get_num_files.c -fno-common -DPIC -o .libs/libzip_la-zip_get_num_files.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_num_files.lo -MD -MP -MF .deps/libzip_la-zip_get_num_files.Tpo -c zip_get_num_files.c -o libzip_la-zip_get_num_files.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_get_num_files.Tpo .deps/libzip_la-zip_get_num_files.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_name.lo -MD -MP -MF .deps/libzip_la-zip_get_name.Tpo -c -o libzip_la-zip_get_name.lo `test -f 'zip_get_name.c' || echo './'`zip_get_name.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_name.lo -MD -MP -MF .deps/libzip_la-zip_get_name.Tpo -c zip_get_name.c -fno-common -DPIC -o .libs/libzip_la-zip_get_name.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_get_name.lo -MD -MP -MF .deps/libzip_la-zip_get_name.Tpo -c zip_get_name.c -o libzip_la-zip_get_name.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_get_name.Tpo .deps/libzip_la-zip_get_name.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_hash.lo -MD -MP -MF .deps/libzip_la-zip_hash.Tpo -c -o libzip_la-zip_hash.lo `test -f 'zip_hash.c' || echo './'`zip_hash.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_hash.lo -MD -MP -MF .deps/libzip_la-zip_hash.Tpo -c zip_hash.c -fno-common -DPIC -o .libs/libzip_la-zip_hash.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_hash.lo -MD -MP -MF .deps/libzip_la-zip_hash.Tpo -c zip_hash.c -o libzip_la-zip_hash.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_hash.Tpo .deps/libzip_la-zip_hash.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_io_util.lo -MD -MP -MF .deps/libzip_la-zip_io_util.Tpo -c -o libzip_la-zip_io_util.lo `test -f 'zip_io_util.c' || echo './'`zip_io_util.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_io_util.lo -MD -MP -MF .deps/libzip_la-zip_io_util.Tpo -c zip_io_util.c -fno-common -DPIC -o .libs/libzip_la-zip_io_util.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_io_util.lo -MD -MP -MF .deps/libzip_la-zip_io_util.Tpo -c zip_io_util.c -o libzip_la-zip_io_util.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_io_util.Tpo .deps/libzip_la-zip_io_util.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_memdup.lo -MD -MP -MF .deps/libzip_la-zip_memdup.Tpo -c -o libzip_la-zip_memdup.lo `test -f 'zip_memdup.c' || echo './'`zip_memdup.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_memdup.lo -MD -MP -MF .deps/libzip_la-zip_memdup.Tpo -c zip_memdup.c -fno-common -DPIC -o .libs/libzip_la-zip_memdup.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_memdup.lo -MD -MP -MF .deps/libzip_la-zip_memdup.Tpo -c zip_memdup.c -o libzip_la-zip_memdup.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_memdup.Tpo .deps/libzip_la-zip_memdup.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_name_locate.lo -MD -MP -MF .deps/libzip_la-zip_name_locate.Tpo -c -o libzip_la-zip_name_locate.lo `test -f 'zip_name_locate.c' || echo './'`zip_name_locate.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_name_locate.lo -MD -MP -MF .deps/libzip_la-zip_name_locate.Tpo -c zip_name_locate.c -fno-common -DPIC -o .libs/libzip_la-zip_name_locate.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_name_locate.lo -MD -MP -MF .deps/libzip_la-zip_name_locate.Tpo -c zip_name_locate.c -o libzip_la-zip_name_locate.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_name_locate.Tpo .deps/libzip_la-zip_name_locate.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_new.lo -MD -MP -MF .deps/libzip_la-zip_new.Tpo -c -o libzip_la-zip_new.lo `test -f 'zip_new.c' || echo './'`zip_new.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_new.lo -MD -MP -MF .deps/libzip_la-zip_new.Tpo -c zip_new.c -fno-common -DPIC -o .libs/libzip_la-zip_new.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_new.lo -MD -MP -MF .deps/libzip_la-zip_new.Tpo -c zip_new.c -o libzip_la-zip_new.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_new.Tpo .deps/libzip_la-zip_new.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_open.lo -MD -MP -MF .deps/libzip_la-zip_open.Tpo -c -o libzip_la-zip_open.lo `test -f 'zip_open.c' || echo './'`zip_open.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_open.lo -MD -MP -MF .deps/libzip_la-zip_open.Tpo -c zip_open.c -fno-common -DPIC -o .libs/libzip_la-zip_open.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_open.lo -MD -MP -MF .deps/libzip_la-zip_open.Tpo -c zip_open.c -o libzip_la-zip_open.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_open.Tpo .deps/libzip_la-zip_open.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_rename.lo -MD -MP -MF .deps/libzip_la-zip_rename.Tpo -c -o libzip_la-zip_rename.lo `test -f 'zip_rename.c' || echo './'`zip_rename.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_rename.lo -MD -MP -MF .deps/libzip_la-zip_rename.Tpo -c zip_rename.c -fno-common -DPIC -o .libs/libzip_la-zip_rename.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_rename.lo -MD -MP -MF .deps/libzip_la-zip_rename.Tpo -c zip_rename.c -o libzip_la-zip_rename.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_rename.Tpo .deps/libzip_la-zip_rename.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_replace.lo -MD -MP -MF .deps/libzip_la-zip_replace.Tpo -c -o libzip_la-zip_replace.lo `test -f 'zip_replace.c' || echo './'`zip_replace.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_replace.lo -MD -MP -MF .deps/libzip_la-zip_replace.Tpo -c zip_replace.c -fno-common -DPIC -o .libs/libzip_la-zip_replace.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_replace.lo -MD -MP -MF .deps/libzip_la-zip_replace.Tpo -c zip_replace.c -o libzip_la-zip_replace.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_replace.Tpo .deps/libzip_la-zip_replace.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_archive_comment.lo -MD -MP -MF .deps/libzip_la-zip_set_archive_comment.Tpo -c -o libzip_la-zip_set_archive_comment.lo `test -f 'zip_set_archive_comment.c' || echo './'`zip_set_archive_comment.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_archive_comment.lo -MD -MP -MF .deps/libzip_la-zip_set_archive_comment.Tpo -c zip_set_archive_comment.c -fno-common -DPIC -o .libs/libzip_la-zip_set_archive_comment.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_archive_comment.lo -MD -MP -MF .deps/libzip_la-zip_set_archive_comment.Tpo -c zip_set_archive_comment.c -o libzip_la-zip_set_archive_comment.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_set_archive_comment.Tpo .deps/libzip_la-zip_set_archive_comment.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_archive_flag.lo -MD -MP -MF .deps/libzip_la-zip_set_archive_flag.Tpo -c -o libzip_la-zip_set_archive_flag.lo `test -f 'zip_set_archive_flag.c' || echo './'`zip_set_archive_flag.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_archive_flag.lo -MD -MP -MF .deps/libzip_la-zip_set_archive_flag.Tpo -c zip_set_archive_flag.c -fno-common -DPIC -o .libs/libzip_la-zip_set_archive_flag.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_archive_flag.lo -MD -MP -MF .deps/libzip_la-zip_set_archive_flag.Tpo -c zip_set_archive_flag.c -o libzip_la-zip_set_archive_flag.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_set_archive_flag.Tpo .deps/libzip_la-zip_set_archive_flag.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_default_password.lo -MD -MP -MF .deps/libzip_la-zip_set_default_password.Tpo -c -o libzip_la-zip_set_default_password.lo `test -f 'zip_set_default_password.c' || echo './'`zip_set_default_password.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_default_password.lo -MD -MP -MF .deps/libzip_la-zip_set_default_password.Tpo -c zip_set_default_password.c -fno-common -DPIC -o .libs/libzip_la-zip_set_default_password.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_default_password.lo -MD -MP -MF .deps/libzip_la-zip_set_default_password.Tpo -c zip_set_default_password.c -o libzip_la-zip_set_default_password.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_set_default_password.Tpo .deps/libzip_la-zip_set_default_password.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_file_comment.lo -MD -MP -MF .deps/libzip_la-zip_set_file_comment.Tpo -c -o libzip_la-zip_set_file_comment.lo `test -f 'zip_set_file_comment.c' || echo './'`zip_set_file_comment.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_file_comment.lo -MD -MP -MF .deps/libzip_la-zip_set_file_comment.Tpo -c zip_set_file_comment.c -fno-common -DPIC -o .libs/libzip_la-zip_set_file_comment.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_file_comment.lo -MD -MP -MF .deps/libzip_la-zip_set_file_comment.Tpo -c zip_set_file_comment.c -o libzip_la-zip_set_file_comment.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_set_file_comment.Tpo .deps/libzip_la-zip_set_file_comment.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_file_compression.lo -MD -MP -MF .deps/libzip_la-zip_set_file_compression.Tpo -c -o libzip_la-zip_set_file_compression.lo `test -f 'zip_set_file_compression.c' || echo './'`zip_set_file_compression.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_file_compression.lo -MD -MP -MF .deps/libzip_la-zip_set_file_compression.Tpo -c zip_set_file_compression.c -fno-common -DPIC -o .libs/libzip_la-zip_set_file_compression.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_file_compression.lo -MD -MP -MF .deps/libzip_la-zip_set_file_compression.Tpo -c zip_set_file_compression.c -o libzip_la-zip_set_file_compression.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_set_file_compression.Tpo .deps/libzip_la-zip_set_file_compression.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_name.lo -MD -MP -MF .deps/libzip_la-zip_set_name.Tpo -c -o libzip_la-zip_set_name.lo `test -f 'zip_set_name.c' || echo './'`zip_set_name.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_name.lo -MD -MP -MF .deps/libzip_la-zip_set_name.Tpo -c zip_set_name.c -fno-common -DPIC -o .libs/libzip_la-zip_set_name.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_set_name.lo -MD -MP -MF .deps/libzip_la-zip_set_name.Tpo -c zip_set_name.c -o libzip_la-zip_set_name.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_set_name.Tpo .deps/libzip_la-zip_set_name.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_begin_write.lo -MD -MP -MF .deps/libzip_la-zip_source_begin_write.Tpo -c -o libzip_la-zip_source_begin_write.lo `test -f 'zip_source_begin_write.c' || echo './'`zip_source_begin_write.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_begin_write.lo -MD -MP -MF .deps/libzip_la-zip_source_begin_write.Tpo -c zip_source_begin_write.c -fno-common -DPIC -o .libs/libzip_la-zip_source_begin_write.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_begin_write.lo -MD -MP -MF .deps/libzip_la-zip_source_begin_write.Tpo -c zip_source_begin_write.c -o libzip_la-zip_source_begin_write.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_begin_write.Tpo .deps/libzip_la-zip_source_begin_write.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_buffer.lo -MD -MP -MF .deps/libzip_la-zip_source_buffer.Tpo -c -o libzip_la-zip_source_buffer.lo `test -f 'zip_source_buffer.c' || echo './'`zip_source_buffer.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_buffer.lo -MD -MP -MF .deps/libzip_la-zip_source_buffer.Tpo -c zip_source_buffer.c -fno-common -DPIC -o .libs/libzip_la-zip_source_buffer.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_buffer.lo -MD -MP -MF .deps/libzip_la-zip_source_buffer.Tpo -c zip_source_buffer.c -o libzip_la-zip_source_buffer.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_buffer.Tpo .deps/libzip_la-zip_source_buffer.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_call.lo -MD -MP -MF .deps/libzip_la-zip_source_call.Tpo -c -o libzip_la-zip_source_call.lo `test -f 'zip_source_call.c' || echo './'`zip_source_call.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_call.lo -MD -MP -MF .deps/libzip_la-zip_source_call.Tpo -c zip_source_call.c -fno-common -DPIC -o .libs/libzip_la-zip_source_call.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_call.lo -MD -MP -MF .deps/libzip_la-zip_source_call.Tpo -c zip_source_call.c -o libzip_la-zip_source_call.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_call.Tpo .deps/libzip_la-zip_source_call.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_close.lo -MD -MP -MF .deps/libzip_la-zip_source_close.Tpo -c -o libzip_la-zip_source_close.lo `test -f 'zip_source_close.c' || echo './'`zip_source_close.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_close.lo -MD -MP -MF .deps/libzip_la-zip_source_close.Tpo -c zip_source_close.c -fno-common -DPIC -o .libs/libzip_la-zip_source_close.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_close.lo -MD -MP -MF .deps/libzip_la-zip_source_close.Tpo -c zip_source_close.c -o libzip_la-zip_source_close.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_close.Tpo .deps/libzip_la-zip_source_close.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_commit_write.lo -MD -MP -MF .deps/libzip_la-zip_source_commit_write.Tpo -c -o libzip_la-zip_source_commit_write.lo `test -f 'zip_source_commit_write.c' || echo './'`zip_source_commit_write.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_commit_write.lo -MD -MP -MF .deps/libzip_la-zip_source_commit_write.Tpo -c zip_source_commit_write.c -fno-common -DPIC -o .libs/libzip_la-zip_source_commit_write.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_commit_write.lo -MD -MP -MF .deps/libzip_la-zip_source_commit_write.Tpo -c zip_source_commit_write.c -o libzip_la-zip_source_commit_write.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_commit_write.Tpo .deps/libzip_la-zip_source_commit_write.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_crc.lo -MD -MP -MF .deps/libzip_la-zip_source_crc.Tpo -c -o libzip_la-zip_source_crc.lo `test -f 'zip_source_crc.c' || echo './'`zip_source_crc.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_crc.lo -MD -MP -MF .deps/libzip_la-zip_source_crc.Tpo -c zip_source_crc.c -fno-common -DPIC -o .libs/libzip_la-zip_source_crc.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_crc.lo -MD -MP -MF .deps/libzip_la-zip_source_crc.Tpo -c zip_source_crc.c -o libzip_la-zip_source_crc.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_crc.Tpo .deps/libzip_la-zip_source_crc.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_deflate.lo -MD -MP -MF .deps/libzip_la-zip_source_deflate.Tpo -c -o libzip_la-zip_source_deflate.lo `test -f 'zip_source_deflate.c' || echo './'`zip_source_deflate.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_deflate.lo -MD -MP -MF .deps/libzip_la-zip_source_deflate.Tpo -c zip_source_deflate.c -fno-common -DPIC -o .libs/libzip_la-zip_source_deflate.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_deflate.lo -MD -MP -MF .deps/libzip_la-zip_source_deflate.Tpo -c zip_source_deflate.c -o libzip_la-zip_source_deflate.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_deflate.Tpo .deps/libzip_la-zip_source_deflate.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_error.lo -MD -MP -MF .deps/libzip_la-zip_source_error.Tpo -c -o libzip_la-zip_source_error.lo `test -f 'zip_source_error.c' || echo './'`zip_source_error.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_error.lo -MD -MP -MF .deps/libzip_la-zip_source_error.Tpo -c zip_source_error.c -fno-common -DPIC -o .libs/libzip_la-zip_source_error.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_error.lo -MD -MP -MF .deps/libzip_la-zip_source_error.Tpo -c zip_source_error.c -o libzip_la-zip_source_error.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_error.Tpo .deps/libzip_la-zip_source_error.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_filep.lo -MD -MP -MF .deps/libzip_la-zip_source_filep.Tpo -c -o libzip_la-zip_source_filep.lo `test -f 'zip_source_filep.c' || echo './'`zip_source_filep.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_filep.lo -MD -MP -MF .deps/libzip_la-zip_source_filep.Tpo -c zip_source_filep.c -fno-common -DPIC -o .libs/libzip_la-zip_source_filep.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_filep.lo -MD -MP -MF .deps/libzip_la-zip_source_filep.Tpo -c zip_source_filep.c -o libzip_la-zip_source_filep.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_filep.Tpo .deps/libzip_la-zip_source_filep.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_free.lo -MD -MP -MF .deps/libzip_la-zip_source_free.Tpo -c -o libzip_la-zip_source_free.lo `test -f 'zip_source_free.c' || echo './'`zip_source_free.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_free.lo -MD -MP -MF .deps/libzip_la-zip_source_free.Tpo -c zip_source_free.c -fno-common -DPIC -o .libs/libzip_la-zip_source_free.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_free.lo -MD -MP -MF .deps/libzip_la-zip_source_free.Tpo -c zip_source_free.c -o libzip_la-zip_source_free.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_free.Tpo .deps/libzip_la-zip_source_free.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_function.lo -MD -MP -MF .deps/libzip_la-zip_source_function.Tpo -c -o libzip_la-zip_source_function.lo `test -f 'zip_source_function.c' || echo './'`zip_source_function.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_function.lo -MD -MP -MF .deps/libzip_la-zip_source_function.Tpo -c zip_source_function.c -fno-common -DPIC -o .libs/libzip_la-zip_source_function.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_function.lo -MD -MP -MF .deps/libzip_la-zip_source_function.Tpo -c zip_source_function.c -o libzip_la-zip_source_function.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_function.Tpo .deps/libzip_la-zip_source_function.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_is_deleted.lo -MD -MP -MF .deps/libzip_la-zip_source_is_deleted.Tpo -c -o libzip_la-zip_source_is_deleted.lo `test -f 'zip_source_is_deleted.c' || echo './'`zip_source_is_deleted.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_is_deleted.lo -MD -MP -MF .deps/libzip_la-zip_source_is_deleted.Tpo -c zip_source_is_deleted.c -fno-common -DPIC -o .libs/libzip_la-zip_source_is_deleted.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_is_deleted.lo -MD -MP -MF .deps/libzip_la-zip_source_is_deleted.Tpo -c zip_source_is_deleted.c -o libzip_la-zip_source_is_deleted.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_is_deleted.Tpo .deps/libzip_la-zip_source_is_deleted.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_layered.lo -MD -MP -MF .deps/libzip_la-zip_source_layered.Tpo -c -o libzip_la-zip_source_layered.lo `test -f 'zip_source_layered.c' || echo './'`zip_source_layered.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_layered.lo -MD -MP -MF .deps/libzip_la-zip_source_layered.Tpo -c zip_source_layered.c -fno-common -DPIC -o .libs/libzip_la-zip_source_layered.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_layered.lo -MD -MP -MF .deps/libzip_la-zip_source_layered.Tpo -c zip_source_layered.c -o libzip_la-zip_source_layered.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_layered.Tpo .deps/libzip_la-zip_source_layered.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_open.lo -MD -MP -MF .deps/libzip_la-zip_source_open.Tpo -c -o libzip_la-zip_source_open.lo `test -f 'zip_source_open.c' || echo './'`zip_source_open.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_open.lo -MD -MP -MF .deps/libzip_la-zip_source_open.Tpo -c zip_source_open.c -fno-common -DPIC -o .libs/libzip_la-zip_source_open.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_open.lo -MD -MP -MF .deps/libzip_la-zip_source_open.Tpo -c zip_source_open.c -o libzip_la-zip_source_open.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_open.Tpo .deps/libzip_la-zip_source_open.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_pkware.lo -MD -MP -MF .deps/libzip_la-zip_source_pkware.Tpo -c -o libzip_la-zip_source_pkware.lo `test -f 'zip_source_pkware.c' || echo './'`zip_source_pkware.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_pkware.lo -MD -MP -MF .deps/libzip_la-zip_source_pkware.Tpo -c zip_source_pkware.c -fno-common -DPIC -o .libs/libzip_la-zip_source_pkware.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_pkware.lo -MD -MP -MF .deps/libzip_la-zip_source_pkware.Tpo -c zip_source_pkware.c -o libzip_la-zip_source_pkware.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_pkware.Tpo .deps/libzip_la-zip_source_pkware.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_read.lo -MD -MP -MF .deps/libzip_la-zip_source_read.Tpo -c -o libzip_la-zip_source_read.lo `test -f 'zip_source_read.c' || echo './'`zip_source_read.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_read.lo -MD -MP -MF .deps/libzip_la-zip_source_read.Tpo -c zip_source_read.c -fno-common -DPIC -o .libs/libzip_la-zip_source_read.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_read.lo -MD -MP -MF .deps/libzip_la-zip_source_read.Tpo -c zip_source_read.c -o libzip_la-zip_source_read.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_read.Tpo .deps/libzip_la-zip_source_read.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_remove.lo -MD -MP -MF .deps/libzip_la-zip_source_remove.Tpo -c -o libzip_la-zip_source_remove.lo `test -f 'zip_source_remove.c' || echo './'`zip_source_remove.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_remove.lo -MD -MP -MF .deps/libzip_la-zip_source_remove.Tpo -c zip_source_remove.c -fno-common -DPIC -o .libs/libzip_la-zip_source_remove.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_remove.lo -MD -MP -MF .deps/libzip_la-zip_source_remove.Tpo -c zip_source_remove.c -o libzip_la-zip_source_remove.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_remove.Tpo .deps/libzip_la-zip_source_remove.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_rollback_write.lo -MD -MP -MF .deps/libzip_la-zip_source_rollback_write.Tpo -c -o libzip_la-zip_source_rollback_write.lo `test -f 'zip_source_rollback_write.c' || echo './'`zip_source_rollback_write.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_rollback_write.lo -MD -MP -MF .deps/libzip_la-zip_source_rollback_write.Tpo -c zip_source_rollback_write.c -fno-common -DPIC -o .libs/libzip_la-zip_source_rollback_write.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_rollback_write.lo -MD -MP -MF .deps/libzip_la-zip_source_rollback_write.Tpo -c zip_source_rollback_write.c -o libzip_la-zip_source_rollback_write.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_rollback_write.Tpo .deps/libzip_la-zip_source_rollback_write.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_seek.lo -MD -MP -MF .deps/libzip_la-zip_source_seek.Tpo -c -o libzip_la-zip_source_seek.lo `test -f 'zip_source_seek.c' || echo './'`zip_source_seek.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_seek.lo -MD -MP -MF .deps/libzip_la-zip_source_seek.Tpo -c zip_source_seek.c -fno-common -DPIC -o .libs/libzip_la-zip_source_seek.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_seek.lo -MD -MP -MF .deps/libzip_la-zip_source_seek.Tpo -c zip_source_seek.c -o libzip_la-zip_source_seek.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_seek.Tpo .deps/libzip_la-zip_source_seek.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_seek_write.lo -MD -MP -MF .deps/libzip_la-zip_source_seek_write.Tpo -c -o libzip_la-zip_source_seek_write.lo `test -f 'zip_source_seek_write.c' || echo './'`zip_source_seek_write.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_seek_write.lo -MD -MP -MF .deps/libzip_la-zip_source_seek_write.Tpo -c zip_source_seek_write.c -fno-common -DPIC -o .libs/libzip_la-zip_source_seek_write.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_seek_write.lo -MD -MP -MF .deps/libzip_la-zip_source_seek_write.Tpo -c zip_source_seek_write.c -o libzip_la-zip_source_seek_write.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_seek_write.Tpo .deps/libzip_la-zip_source_seek_write.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_stat.lo -MD -MP -MF .deps/libzip_la-zip_source_stat.Tpo -c -o libzip_la-zip_source_stat.lo `test -f 'zip_source_stat.c' || echo './'`zip_source_stat.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_stat.lo -MD -MP -MF .deps/libzip_la-zip_source_stat.Tpo -c zip_source_stat.c -fno-common -DPIC -o .libs/libzip_la-zip_source_stat.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_stat.lo -MD -MP -MF .deps/libzip_la-zip_source_stat.Tpo -c zip_source_stat.c -o libzip_la-zip_source_stat.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_stat.Tpo .deps/libzip_la-zip_source_stat.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_supports.lo -MD -MP -MF .deps/libzip_la-zip_source_supports.Tpo -c -o libzip_la-zip_source_supports.lo `test -f 'zip_source_supports.c' || echo './'`zip_source_supports.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_supports.lo -MD -MP -MF .deps/libzip_la-zip_source_supports.Tpo -c zip_source_supports.c -fno-common -DPIC -o .libs/libzip_la-zip_source_supports.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_supports.lo -MD -MP -MF .deps/libzip_la-zip_source_supports.Tpo -c zip_source_supports.c -o libzip_la-zip_source_supports.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_supports.Tpo .deps/libzip_la-zip_source_supports.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_tell.lo -MD -MP -MF .deps/libzip_la-zip_source_tell.Tpo -c -o libzip_la-zip_source_tell.lo `test -f 'zip_source_tell.c' || echo './'`zip_source_tell.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_tell.lo -MD -MP -MF .deps/libzip_la-zip_source_tell.Tpo -c zip_source_tell.c -fno-common -DPIC -o .libs/libzip_la-zip_source_tell.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_tell.lo -MD -MP -MF .deps/libzip_la-zip_source_tell.Tpo -c zip_source_tell.c -o libzip_la-zip_source_tell.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_tell.Tpo .deps/libzip_la-zip_source_tell.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_tell_write.lo -MD -MP -MF .deps/libzip_la-zip_source_tell_write.Tpo -c -o libzip_la-zip_source_tell_write.lo `test -f 'zip_source_tell_write.c' || echo './'`zip_source_tell_write.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_tell_write.lo -MD -MP -MF .deps/libzip_la-zip_source_tell_write.Tpo -c zip_source_tell_write.c -fno-common -DPIC -o .libs/libzip_la-zip_source_tell_write.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_tell_write.lo -MD -MP -MF .deps/libzip_la-zip_source_tell_write.Tpo -c zip_source_tell_write.c -o libzip_la-zip_source_tell_write.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_tell_write.Tpo .deps/libzip_la-zip_source_tell_write.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_window.lo -MD -MP -MF .deps/libzip_la-zip_source_window.Tpo -c -o libzip_la-zip_source_window.lo `test -f 'zip_source_window.c' || echo './'`zip_source_window.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_window.lo -MD -MP -MF .deps/libzip_la-zip_source_window.Tpo -c zip_source_window.c -fno-common -DPIC -o .libs/libzip_la-zip_source_window.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_window.lo -MD -MP -MF .deps/libzip_la-zip_source_window.Tpo -c zip_source_window.c -o libzip_la-zip_source_window.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_window.Tpo .deps/libzip_la-zip_source_window.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_winzip_aes_decode.lo -MD -MP -MF .deps/libzip_la-zip_source_winzip_aes_decode.Tpo -c -o libzip_la-zip_source_winzip_aes_decode.lo `test -f 'zip_source_winzip_aes_decode.c' || echo './'`zip_source_winzip_aes_decode.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_winzip_aes_decode.lo -MD -MP -MF .deps/libzip_la-zip_source_winzip_aes_decode.Tpo -c zip_source_winzip_aes_decode.c -fno-common -DPIC -o .libs/libzip_la-zip_source_winzip_aes_decode.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_winzip_aes_decode.lo -MD -MP -MF .deps/libzip_la-zip_source_winzip_aes_decode.Tpo -c zip_source_winzip_aes_decode.c -o libzip_la-zip_source_winzip_aes_decode.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_winzip_aes_decode.Tpo .deps/libzip_la-zip_source_winzip_aes_decode.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_winzip_aes_encode.lo -MD -MP -MF .deps/libzip_la-zip_source_winzip_aes_encode.Tpo -c -o libzip_la-zip_source_winzip_aes_encode.lo `test -f 'zip_source_winzip_aes_encode.c' || echo './'`zip_source_winzip_aes_encode.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_winzip_aes_encode.lo -MD -MP -MF .deps/libzip_la-zip_source_winzip_aes_encode.Tpo -c zip_source_winzip_aes_encode.c -fno-common -DPIC -o .libs/libzip_la-zip_source_winzip_aes_encode.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_winzip_aes_encode.lo -MD -MP -MF .deps/libzip_la-zip_source_winzip_aes_encode.Tpo -c zip_source_winzip_aes_encode.c -o libzip_la-zip_source_winzip_aes_encode.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_winzip_aes_encode.Tpo .deps/libzip_la-zip_source_winzip_aes_encode.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_write.lo -MD -MP -MF .deps/libzip_la-zip_source_write.Tpo -c -o libzip_la-zip_source_write.lo `test -f 'zip_source_write.c' || echo './'`zip_source_write.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_write.lo -MD -MP -MF .deps/libzip_la-zip_source_write.Tpo -c zip_source_write.c -fno-common -DPIC -o .libs/libzip_la-zip_source_write.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_write.lo -MD -MP -MF .deps/libzip_la-zip_source_write.Tpo -c zip_source_write.c -o libzip_la-zip_source_write.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_write.Tpo .deps/libzip_la-zip_source_write.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_zip.lo -MD -MP -MF .deps/libzip_la-zip_source_zip.Tpo -c -o libzip_la-zip_source_zip.lo `test -f 'zip_source_zip.c' || echo './'`zip_source_zip.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_zip.lo -MD -MP -MF .deps/libzip_la-zip_source_zip.Tpo -c zip_source_zip.c -fno-common -DPIC -o .libs/libzip_la-zip_source_zip.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_zip.lo -MD -MP -MF .deps/libzip_la-zip_source_zip.Tpo -c zip_source_zip.c -o libzip_la-zip_source_zip.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_zip.Tpo .deps/libzip_la-zip_source_zip.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_zip_new.lo -MD -MP -MF .deps/libzip_la-zip_source_zip_new.Tpo -c -o libzip_la-zip_source_zip_new.lo `test -f 'zip_source_zip_new.c' || echo './'`zip_source_zip_new.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_zip_new.lo -MD -MP -MF .deps/libzip_la-zip_source_zip_new.Tpo -c zip_source_zip_new.c -fno-common -DPIC -o .libs/libzip_la-zip_source_zip_new.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_source_zip_new.lo -MD -MP -MF .deps/libzip_la-zip_source_zip_new.Tpo -c zip_source_zip_new.c -o libzip_la-zip_source_zip_new.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_source_zip_new.Tpo .deps/libzip_la-zip_source_zip_new.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_stat.lo -MD -MP -MF .deps/libzip_la-zip_stat.Tpo -c -o libzip_la-zip_stat.lo `test -f 'zip_stat.c' || echo './'`zip_stat.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_stat.lo -MD -MP -MF .deps/libzip_la-zip_stat.Tpo -c zip_stat.c -fno-common -DPIC -o .libs/libzip_la-zip_stat.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_stat.lo -MD -MP -MF .deps/libzip_la-zip_stat.Tpo -c zip_stat.c -o libzip_la-zip_stat.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_stat.Tpo .deps/libzip_la-zip_stat.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_stat_index.lo -MD -MP -MF .deps/libzip_la-zip_stat_index.Tpo -c -o libzip_la-zip_stat_index.lo `test -f 'zip_stat_index.c' || echo './'`zip_stat_index.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_stat_index.lo -MD -MP -MF .deps/libzip_la-zip_stat_index.Tpo -c zip_stat_index.c -fno-common -DPIC -o .libs/libzip_la-zip_stat_index.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_stat_index.lo -MD -MP -MF .deps/libzip_la-zip_stat_index.Tpo -c zip_stat_index.c -o libzip_la-zip_stat_index.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_stat_index.Tpo .deps/libzip_la-zip_stat_index.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_stat_init.lo -MD -MP -MF .deps/libzip_la-zip_stat_init.Tpo -c -o libzip_la-zip_stat_init.lo `test -f 'zip_stat_init.c' || echo './'`zip_stat_init.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_stat_init.lo -MD -MP -MF .deps/libzip_la-zip_stat_init.Tpo -c zip_stat_init.c -fno-common -DPIC -o .libs/libzip_la-zip_stat_init.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_stat_init.lo -MD -MP -MF .deps/libzip_la-zip_stat_init.Tpo -c zip_stat_init.c -o libzip_la-zip_stat_init.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_stat_init.Tpo .deps/libzip_la-zip_stat_init.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_strerror.lo -MD -MP -MF .deps/libzip_la-zip_strerror.Tpo -c -o libzip_la-zip_strerror.lo `test -f 'zip_strerror.c' || echo './'`zip_strerror.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_strerror.lo -MD -MP -MF .deps/libzip_la-zip_strerror.Tpo -c zip_strerror.c -fno-common -DPIC -o .libs/libzip_la-zip_strerror.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_strerror.lo -MD -MP -MF .deps/libzip_la-zip_strerror.Tpo -c zip_strerror.c -o libzip_la-zip_strerror.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_strerror.Tpo .deps/libzip_la-zip_strerror.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_string.lo -MD -MP -MF .deps/libzip_la-zip_string.Tpo -c -o libzip_la-zip_string.lo `test -f 'zip_string.c' || echo './'`zip_string.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_string.lo -MD -MP -MF .deps/libzip_la-zip_string.Tpo -c zip_string.c -fno-common -DPIC -o .libs/libzip_la-zip_string.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_string.lo -MD -MP -MF .deps/libzip_la-zip_string.Tpo -c zip_string.c -o libzip_la-zip_string.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_string.Tpo .deps/libzip_la-zip_string.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_unchange.lo -MD -MP -MF .deps/libzip_la-zip_unchange.Tpo -c -o libzip_la-zip_unchange.lo `test -f 'zip_unchange.c' || echo './'`zip_unchange.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_unchange.lo -MD -MP -MF .deps/libzip_la-zip_unchange.Tpo -c zip_unchange.c -fno-common -DPIC -o .libs/libzip_la-zip_unchange.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_unchange.lo -MD -MP -MF .deps/libzip_la-zip_unchange.Tpo -c zip_unchange.c -o libzip_la-zip_unchange.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_unchange.Tpo .deps/libzip_la-zip_unchange.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_unchange_all.lo -MD -MP -MF .deps/libzip_la-zip_unchange_all.Tpo -c -o libzip_la-zip_unchange_all.lo `test -f 'zip_unchange_all.c' || echo './'`zip_unchange_all.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_unchange_all.lo -MD -MP -MF .deps/libzip_la-zip_unchange_all.Tpo -c zip_unchange_all.c -fno-common -DPIC -o .libs/libzip_la-zip_unchange_all.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_unchange_all.lo -MD -MP -MF .deps/libzip_la-zip_unchange_all.Tpo -c zip_unchange_all.c -o libzip_la-zip_unchange_all.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_unchange_all.Tpo .deps/libzip_la-zip_unchange_all.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_unchange_archive.lo -MD -MP -MF .deps/libzip_la-zip_unchange_archive.Tpo -c -o libzip_la-zip_unchange_archive.lo `test -f 'zip_unchange_archive.c' || echo './'`zip_unchange_archive.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_unchange_archive.lo -MD -MP -MF .deps/libzip_la-zip_unchange_archive.Tpo -c zip_unchange_archive.c -fno-common -DPIC -o .libs/libzip_la-zip_unchange_archive.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_unchange_archive.lo -MD -MP -MF .deps/libzip_la-zip_unchange_archive.Tpo -c zip_unchange_archive.c -o libzip_la-zip_unchange_archive.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_unchange_archive.Tpo .deps/libzip_la-zip_unchange_archive.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_unchange_data.lo -MD -MP -MF .deps/libzip_la-zip_unchange_data.Tpo -c -o libzip_la-zip_unchange_data.lo `test -f 'zip_unchange_data.c' || echo './'`zip_unchange_data.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_unchange_data.lo -MD -MP -MF .deps/libzip_la-zip_unchange_data.Tpo -c zip_unchange_data.c -fno-common -DPIC -o .libs/libzip_la-zip_unchange_data.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_unchange_data.lo -MD -MP -MF .deps/libzip_la-zip_unchange_data.Tpo -c zip_unchange_data.c -o libzip_la-zip_unchange_data.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_unchange_data.Tpo .deps/libzip_la-zip_unchange_data.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_utf-8.lo -MD -MP -MF .deps/libzip_la-zip_utf-8.Tpo -c -o libzip_la-zip_utf-8.lo `test -f 'zip_utf-8.c' || echo './'`zip_utf-8.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_utf-8.lo -MD -MP -MF .deps/libzip_la-zip_utf-8.Tpo -c zip_utf-8.c -fno-common -DPIC -o .libs/libzip_la-zip_utf-8.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./gladman-fcrypt -fvisibility=hidden -mmacosx-version-min=10.7 -MT libzip_la-zip_utf-8.lo -MD -MP -MF .deps/libzip_la-zip_utf-8.Tpo -c zip_utf-8.c -o libzip_la-zip_utf-8.o >/dev/null 2>&1
mv -f .deps/libzip_la-zip_utf-8.Tpo .deps/libzip_la-zip_utf-8.Plo
/bin/sh ../libtool --tag=CC --mode=link gcc -fvisibility=hidden -mmacosx-version-min=10.7 -no-undefined -version-info 5:0:0 -mmacosx-version-min=10.7 -o libzip.la -rpath /Users/euphorbium/experiments/Rack/lib libzip_la-zip_random_unix.lo libzip_la-zip_source_file.lo libzip_la-gladman-fcrypt.lo libzip_la-zip_add.lo libzip_la-zip_add_dir.lo libzip_la-zip_add_entry.lo libzip_la-zip_buffer.lo libzip_la-zip_close.lo libzip_la-zip_delete.lo libzip_la-zip_dir_add.lo libzip_la-zip_dirent.lo libzip_la-zip_discard.lo libzip_la-zip_entry.lo libzip_la-zip_err_str.lo libzip_la-zip_error.lo libzip_la-zip_error_clear.lo libzip_la-zip_error_get.lo libzip_la-zip_error_get_sys_type.lo libzip_la-zip_error_strerror.lo libzip_la-zip_error_to_str.lo libzip_la-zip_extra_field.lo libzip_la-zip_extra_field_api.lo libzip_la-zip_fclose.lo libzip_la-zip_fdopen.lo libzip_la-zip_file_add.lo libzip_la-zip_file_error_clear.lo libzip_la-zip_file_error_get.lo libzip_la-zip_file_get_comment.lo libzip_la-zip_file_get_external_attributes.lo libzip_la-zip_file_get_offset.lo libzip_la-zip_file_rename.lo libzip_la-zip_file_replace.lo libzip_la-zip_file_set_comment.lo libzip_la-zip_file_set_encryption.lo libzip_la-zip_file_set_external_attributes.lo libzip_la-zip_file_set_mtime.lo libzip_la-zip_file_strerror.lo libzip_la-zip_filerange_crc.lo libzip_la-zip_fopen.lo libzip_la-zip_fopen_encrypted.lo libzip_la-zip_fopen_index.lo libzip_la-zip_fopen_index_encrypted.lo libzip_la-zip_fread.lo libzip_la-zip_fseek.lo libzip_la-zip_ftell.lo libzip_la-zip_get_archive_comment.lo libzip_la-zip_get_archive_flag.lo libzip_la-zip_get_compression_implementation.lo libzip_la-zip_get_encryption_implementation.lo libzip_la-zip_get_file_comment.lo libzip_la-zip_get_num_entries.lo libzip_la-zip_get_num_files.lo libzip_la-zip_get_name.lo libzip_la-zip_hash.lo libzip_la-zip_io_util.lo libzip_la-zip_memdup.lo libzip_la-zip_name_locate.lo libzip_la-zip_new.lo libzip_la-zip_open.lo libzip_la-zip_rename.lo libzip_la-zip_replace.lo libzip_la-zip_set_archive_comment.lo libzip_la-zip_set_archive_flag.lo libzip_la-zip_set_default_password.lo libzip_la-zip_set_file_comment.lo libzip_la-zip_set_file_compression.lo libzip_la-zip_set_name.lo libzip_la-zip_source_begin_write.lo libzip_la-zip_source_buffer.lo libzip_la-zip_source_call.lo libzip_la-zip_source_close.lo libzip_la-zip_source_commit_write.lo libzip_la-zip_source_crc.lo libzip_la-zip_source_deflate.lo libzip_la-zip_source_error.lo libzip_la-zip_source_filep.lo libzip_la-zip_source_free.lo libzip_la-zip_source_function.lo libzip_la-zip_source_is_deleted.lo libzip_la-zip_source_layered.lo libzip_la-zip_source_open.lo libzip_la-zip_source_pkware.lo libzip_la-zip_source_read.lo libzip_la-zip_source_remove.lo libzip_la-zip_source_rollback_write.lo libzip_la-zip_source_seek.lo libzip_la-zip_source_seek_write.lo libzip_la-zip_source_stat.lo libzip_la-zip_source_supports.lo libzip_la-zip_source_tell.lo libzip_la-zip_source_tell_write.lo libzip_la-zip_source_window.lo libzip_la-zip_source_winzip_aes_decode.lo libzip_la-zip_source_winzip_aes_encode.lo libzip_la-zip_source_write.lo libzip_la-zip_source_zip.lo libzip_la-zip_source_zip_new.lo libzip_la-zip_stat.lo libzip_la-zip_stat_index.lo libzip_la-zip_stat_init.lo libzip_la-zip_strerror.lo libzip_la-zip_string.lo libzip_la-zip_unchange.lo libzip_la-zip_unchange_all.lo libzip_la-zip_unchange_archive.lo libzip_la-zip_unchange_data.lo libzip_la-zip_utf-8.lo -lz
libtool: link: gcc -dynamiclib -o .libs/libzip.5.dylib .libs/libzip_la-zip_random_unix.o .libs/libzip_la-zip_source_file.o .libs/libzip_la-gladman-fcrypt.o .libs/libzip_la-zip_add.o .libs/libzip_la-zip_add_dir.o .libs/libzip_la-zip_add_entry.o .libs/libzip_la-zip_buffer.o .libs/libzip_la-zip_close.o .libs/libzip_la-zip_delete.o .libs/libzip_la-zip_dir_add.o .libs/libzip_la-zip_dirent.o .libs/libzip_la-zip_discard.o .libs/libzip_la-zip_entry.o .libs/libzip_la-zip_err_str.o .libs/libzip_la-zip_error.o .libs/libzip_la-zip_error_clear.o .libs/libzip_la-zip_error_get.o .libs/libzip_la-zip_error_get_sys_type.o .libs/libzip_la-zip_error_strerror.o .libs/libzip_la-zip_error_to_str.o .libs/libzip_la-zip_extra_field.o .libs/libzip_la-zip_extra_field_api.o .libs/libzip_la-zip_fclose.o .libs/libzip_la-zip_fdopen.o .libs/libzip_la-zip_file_add.o .libs/libzip_la-zip_file_error_clear.o .libs/libzip_la-zip_file_error_get.o .libs/libzip_la-zip_file_get_comment.o .libs/libzip_la-zip_file_get_external_attributes.o .libs/libzip_la-zip_file_get_offset.o .libs/libzip_la-zip_file_rename.o .libs/libzip_la-zip_file_replace.o .libs/libzip_la-zip_file_set_comment.o .libs/libzip_la-zip_file_set_encryption.o .libs/libzip_la-zip_file_set_external_attributes.o .libs/libzip_la-zip_file_set_mtime.o .libs/libzip_la-zip_file_strerror.o .libs/libzip_la-zip_filerange_crc.o .libs/libzip_la-zip_fopen.o .libs/libzip_la-zip_fopen_encrypted.o .libs/libzip_la-zip_fopen_index.o .libs/libzip_la-zip_fopen_index_encrypted.o .libs/libzip_la-zip_fread.o .libs/libzip_la-zip_fseek.o .libs/libzip_la-zip_ftell.o .libs/libzip_la-zip_get_archive_comment.o .libs/libzip_la-zip_get_archive_flag.o .libs/libzip_la-zip_get_compression_implementation.o .libs/libzip_la-zip_get_encryption_implementation.o .libs/libzip_la-zip_get_file_comment.o .libs/libzip_la-zip_get_num_entries.o .libs/libzip_la-zip_get_num_files.o .libs/libzip_la-zip_get_name.o .libs/libzip_la-zip_hash.o .libs/libzip_la-zip_io_util.o .libs/libzip_la-zip_memdup.o .libs/libzip_la-zip_name_locate.o .libs/libzip_la-zip_new.o .libs/libzip_la-zip_open.o .libs/libzip_la-zip_rename.o .libs/libzip_la-zip_replace.o .libs/libzip_la-zip_set_archive_comment.o .libs/libzip_la-zip_set_archive_flag.o .libs/libzip_la-zip_set_default_password.o .libs/libzip_la-zip_set_file_comment.o .libs/libzip_la-zip_set_file_compression.o .libs/libzip_la-zip_set_name.o .libs/libzip_la-zip_source_begin_write.o .libs/libzip_la-zip_source_buffer.o .libs/libzip_la-zip_source_call.o .libs/libzip_la-zip_source_close.o .libs/libzip_la-zip_source_commit_write.o .libs/libzip_la-zip_source_crc.o .libs/libzip_la-zip_source_deflate.o .libs/libzip_la-zip_source_error.o .libs/libzip_la-zip_source_filep.o .libs/libzip_la-zip_source_free.o .libs/libzip_la-zip_source_function.o .libs/libzip_la-zip_source_is_deleted.o .libs/libzip_la-zip_source_layered.o .libs/libzip_la-zip_source_open.o .libs/libzip_la-zip_source_pkware.o .libs/libzip_la-zip_source_read.o .libs/libzip_la-zip_source_remove.o .libs/libzip_la-zip_source_rollback_write.o .libs/libzip_la-zip_source_seek.o .libs/libzip_la-zip_source_seek_write.o .libs/libzip_la-zip_source_stat.o .libs/libzip_la-zip_source_supports.o .libs/libzip_la-zip_source_tell.o .libs/libzip_la-zip_source_tell_write.o .libs/libzip_la-zip_source_window.o .libs/libzip_la-zip_source_winzip_aes_decode.o .libs/libzip_la-zip_source_winzip_aes_encode.o .libs/libzip_la-zip_source_write.o .libs/libzip_la-zip_source_zip.o .libs/libzip_la-zip_source_zip_new.o .libs/libzip_la-zip_stat.o .libs/libzip_la-zip_stat_index.o .libs/libzip_la-zip_stat_init.o .libs/libzip_la-zip_strerror.o .libs/libzip_la-zip_string.o .libs/libzip_la-zip_unchange.o .libs/libzip_la-zip_unchange_all.o .libs/libzip_la-zip_unchange_archive.o .libs/libzip_la-zip_unchange_data.o .libs/libzip_la-zip_utf-8.o -lz -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -install_name /Users/euphorbium/experiments/Rack/lib/libzip.5.dylib -compatibility_version 6 -current_version 6.0 -Wl,-single_module
libtool: link: (cd ".libs" && rm -f "libzip.dylib" && ln -s "libzip.5.dylib" "libzip.dylib")
libtool: link: ar cru .libs/libzip.a libzip_la-zip_random_unix.o libzip_la-zip_source_file.o libzip_la-gladman-fcrypt.o libzip_la-zip_add.o libzip_la-zip_add_dir.o libzip_la-zip_add_entry.o libzip_la-zip_buffer.o libzip_la-zip_close.o libzip_la-zip_delete.o libzip_la-zip_dir_add.o libzip_la-zip_dirent.o libzip_la-zip_discard.o libzip_la-zip_entry.o libzip_la-zip_err_str.o libzip_la-zip_error.o libzip_la-zip_error_clear.o libzip_la-zip_error_get.o libzip_la-zip_error_get_sys_type.o libzip_la-zip_error_strerror.o libzip_la-zip_error_to_str.o libzip_la-zip_extra_field.o libzip_la-zip_extra_field_api.o libzip_la-zip_fclose.o libzip_la-zip_fdopen.o libzip_la-zip_file_add.o libzip_la-zip_file_error_clear.o libzip_la-zip_file_error_get.o libzip_la-zip_file_get_comment.o libzip_la-zip_file_get_external_attributes.o libzip_la-zip_file_get_offset.o libzip_la-zip_file_rename.o libzip_la-zip_file_replace.o libzip_la-zip_file_set_comment.o libzip_la-zip_file_set_encryption.o libzip_la-zip_file_set_external_attributes.o libzip_la-zip_file_set_mtime.o libzip_la-zip_file_strerror.o libzip_la-zip_filerange_crc.o libzip_la-zip_fopen.o libzip_la-zip_fopen_encrypted.o libzip_la-zip_fopen_index.o libzip_la-zip_fopen_index_encrypted.o libzip_la-zip_fread.o libzip_la-zip_fseek.o libzip_la-zip_ftell.o libzip_la-zip_get_archive_comment.o libzip_la-zip_get_archive_flag.o libzip_la-zip_get_compression_implementation.o libzip_la-zip_get_encryption_implementation.o libzip_la-zip_get_file_comment.o libzip_la-zip_get_num_entries.o libzip_la-zip_get_num_files.o libzip_la-zip_get_name.o libzip_la-zip_hash.o libzip_la-zip_io_util.o libzip_la-zip_memdup.o libzip_la-zip_name_locate.o libzip_la-zip_new.o libzip_la-zip_open.o libzip_la-zip_rename.o libzip_la-zip_replace.o libzip_la-zip_set_archive_comment.o libzip_la-zip_set_archive_flag.o libzip_la-zip_set_default_password.o libzip_la-zip_set_file_comment.o libzip_la-zip_set_file_compression.o libzip_la-zip_set_name.o libzip_la-zip_source_begin_write.o libzip_la-zip_source_buffer.o libzip_la-zip_source_call.o libzip_la-zip_source_close.o libzip_la-zip_source_commit_write.o libzip_la-zip_source_crc.o libzip_la-zip_source_deflate.o libzip_la-zip_source_error.o libzip_la-zip_source_filep.o libzip_la-zip_source_free.o libzip_la-zip_source_function.o libzip_la-zip_source_is_deleted.o libzip_la-zip_source_layered.o libzip_la-zip_source_open.o libzip_la-zip_source_pkware.o libzip_la-zip_source_read.o libzip_la-zip_source_remove.o libzip_la-zip_source_rollback_write.o libzip_la-zip_source_seek.o libzip_la-zip_source_seek_write.o libzip_la-zip_source_stat.o libzip_la-zip_source_supports.o libzip_la-zip_source_tell.o libzip_la-zip_source_tell_write.o libzip_la-zip_source_window.o libzip_la-zip_source_winzip_aes_decode.o libzip_la-zip_source_winzip_aes_encode.o libzip_la-zip_source_write.o libzip_la-zip_source_zip.o libzip_la-zip_source_zip_new.o libzip_la-zip_stat.o libzip_la-zip_stat_index.o libzip_la-zip_stat_init.o libzip_la-zip_strerror.o libzip_la-zip_string.o libzip_la-zip_unchange.o libzip_la-zip_unchange_all.o libzip_la-zip_unchange_archive.o libzip_la-zip_unchange_data.o libzip_la-zip_utf-8.o
libtool: link: ranlib .libs/libzip.a
libtool: link: ( cd ".libs" && rm -f "libzip.la" && ln -s "../libzip.la" "libzip.la" )
Making all in man
make[4]: Nothing to be done for `all'.
Making all in src
gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -mmacosx-version-min=10.7 -MT zipcmp.o -MD -MP -MF .deps/zipcmp.Tpo -c -o zipcmp.o zipcmp.c
mv -f .deps/zipcmp.Tpo .deps/zipcmp.Po
/bin/sh ../libtool --tag=CC --mode=link gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o zipcmp zipcmp.o ../lib/libzip.la -lz
libtool: link: gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o .libs/zipcmp zipcmp.o ../lib/.libs/libzip.dylib -lz
gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -mmacosx-version-min=10.7 -MT zipmerge.o -MD -MP -MF .deps/zipmerge.Tpo -c -o zipmerge.o zipmerge.c
mv -f .deps/zipmerge.Tpo .deps/zipmerge.Po
/bin/sh ../libtool --tag=CC --mode=link gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o zipmerge zipmerge.o ../lib/libzip.la -lz
libtool: link: gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o .libs/zipmerge zipmerge.o ../lib/.libs/libzip.dylib -lz
gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -mmacosx-version-min=10.7 -MT source_hole.o -MD -MP -MF .deps/source_hole.Tpo -c -o source_hole.o source_hole.c
mv -f .deps/source_hole.Tpo .deps/source_hole.Po
gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -mmacosx-version-min=10.7 -MT ziptool.o -MD -MP -MF .deps/ziptool.Tpo -c -o ziptool.o ziptool.c
mv -f .deps/ziptool.Tpo .deps/ziptool.Po
/bin/sh ../libtool --tag=CC --mode=link gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o ziptool source_hole.o ziptool.o ../lib/libzip.la -lz
libtool: link: gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o .libs/ziptool source_hole.o ziptool.o ../lib/.libs/libzip.dylib -lz
gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -mmacosx-version-min=10.7 -MT hole.o -MD -MP -MF .deps/hole.Tpo -c -o hole.o hole.c
mv -f .deps/hole.Tpo .deps/hole.Po
/bin/sh ../libtool --tag=CC --mode=link gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o hole hole.o source_hole.o ../lib/libzip.la -lz
libtool: link: gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o .libs/hole hole.o source_hole.o ../lib/.libs/libzip.dylib -lz
Making all in regress
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -I../src -mmacosx-version-min=10.7 -MT malloc.lo -MD -MP -MF .deps/malloc.Tpo -c -o malloc.lo malloc.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -I../src -mmacosx-version-min=10.7 -MT malloc.lo -MD -MP -MF .deps/malloc.Tpo -c malloc.c -fno-common -DPIC -o .libs/malloc.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -I../src -mmacosx-version-min=10.7 -MT malloc.lo -MD -MP -MF .deps/malloc.Tpo -c malloc.c -o malloc.o >/dev/null 2>&1
mv -f .deps/malloc.Tpo .deps/malloc.Plo
/bin/sh ../libtool --tag=CC --mode=link gcc -mmacosx-version-min=10.7 -module -avoid-version -mmacosx-version-min=10.7 -o malloc.la -rpath /Users/euphorbium/experiments/Rack/lib/libzip malloc.lo -ldl -lz
libtool: link: gcc -Wl,-undefined -Wl,dynamic_lookup -o .libs/malloc.so -bundle .libs/malloc.o -ldl -lz -mmacosx-version-min=10.7 -mmacosx-version-min=10.7
libtool: link: ar cru .libs/malloc.a malloc.o
libtool: link: ranlib .libs/malloc.a
libtool: link: ( cd ".libs" && rm -f "malloc.la" && ln -s "../malloc.la" "malloc.la" )
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -I../src -mmacosx-version-min=10.7 -MT nonrandomopen.lo -MD -MP -MF .deps/nonrandomopen.Tpo -c -o nonrandomopen.lo nonrandomopen.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -I../src -mmacosx-version-min=10.7 -MT nonrandomopen.lo -MD -MP -MF .deps/nonrandomopen.Tpo -c nonrandomopen.c -fno-common -DPIC -o .libs/nonrandomopen.o
nonrandomopen.c:73:23: warning: second argument to 'va_arg' is of promotable type 'mode_t' (aka 'unsigned short'); this va_arg has undefined behavior because arguments will be promoted to 'int' [-Wvarargs]
mode = va_arg(ap, mode_t);
^~~~~~
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/include/stdarg.h:35:50: note: expanded from macro 'va_arg'
#define va_arg(ap, type) __builtin_va_arg(ap, type)
^~~~
1 warning generated.
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -I../src -mmacosx-version-min=10.7 -MT nonrandomopen.lo -MD -MP -MF .deps/nonrandomopen.Tpo -c nonrandomopen.c -o nonrandomopen.o >/dev/null 2>&1
mv -f .deps/nonrandomopen.Tpo .deps/nonrandomopen.Plo
/bin/sh ../libtool --tag=CC --mode=link gcc -mmacosx-version-min=10.7 -module -avoid-version -mmacosx-version-min=10.7 -o nonrandomopen.la -rpath /Users/euphorbium/experiments/Rack/lib/libzip nonrandomopen.lo -ldl -lz
libtool: link: gcc -Wl,-undefined -Wl,dynamic_lookup -o .libs/nonrandomopen.so -bundle .libs/nonrandomopen.o -ldl -lz -mmacosx-version-min=10.7 -mmacosx-version-min=10.7
libtool: link: ar cru .libs/nonrandomopen.a nonrandomopen.o
libtool: link: ranlib .libs/nonrandomopen.a
libtool: link: ( cd ".libs" && rm -f "nonrandomopen.la" && ln -s "../nonrandomopen.la" "nonrandomopen.la" )
gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -I../src -mmacosx-version-min=10.7 -MT add_from_filep.o -MD -MP -MF .deps/add_from_filep.Tpo -c -o add_from_filep.o add_from_filep.c
mv -f .deps/add_from_filep.Tpo .deps/add_from_filep.Po
/bin/sh ../libtool --tag=CC --mode=link gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o add_from_filep add_from_filep.o ../lib/libzip.la -lz
libtool: link: gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o .libs/add_from_filep add_from_filep.o ../lib/.libs/libzip.dylib -lz
gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -I../src -mmacosx-version-min=10.7 -MT fopen_unchanged.o -MD -MP -MF .deps/fopen_unchanged.Tpo -c -o fopen_unchanged.o fopen_unchanged.c
mv -f .deps/fopen_unchanged.Tpo .deps/fopen_unchanged.Po
/bin/sh ../libtool --tag=CC --mode=link gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o fopen_unchanged fopen_unchanged.o ../lib/libzip.la -lz
libtool: link: gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o .libs/fopen_unchanged fopen_unchanged.o ../lib/.libs/libzip.dylib -lz
gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -I../src -mmacosx-version-min=10.7 -MT fread.o -MD -MP -MF .deps/fread.Tpo -c -o fread.o fread.c
mv -f .deps/fread.Tpo .deps/fread.Po
/bin/sh ../libtool --tag=CC --mode=link gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o fread fread.o ../lib/libzip.la -lz
libtool: link: gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o .libs/fread fread.o ../lib/.libs/libzip.dylib -lz
gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -I../src -mmacosx-version-min=10.7 -MT fseek.o -MD -MP -MF .deps/fseek.Tpo -c -o fseek.o fseek.c
mv -f .deps/fseek.Tpo .deps/fseek.Po
/bin/sh ../libtool --tag=CC --mode=link gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o fseek fseek.o ../lib/libzip.la -lz
libtool: link: gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o .libs/fseek fseek.o ../lib/.libs/libzip.dylib -lz
gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -I../src -mmacosx-version-min=10.7 -MT tryopen.o -MD -MP -MF .deps/tryopen.Tpo -c -o tryopen.o tryopen.c
mv -f .deps/tryopen.Tpo .deps/tryopen.Po
/bin/sh ../libtool --tag=CC --mode=link gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o tryopen tryopen.o ../lib/libzip.la -lz
libtool: link: gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o .libs/tryopen tryopen.o ../lib/.libs/libzip.dylib -lz
sed -e 's!@[s]rcdir@!.!g' -e 's!@[a]bs_srcdir@!/Users/euphorbium/experiments/Rack/dep/libzip-1.2.0/regress!g' ./runtest.in > runtest
chmod +x runtest
Making all in examples
gcc -DHAVE_CONFIG_H -I. -I.. -I../lib -I../lib -mmacosx-version-min=10.7 -MT in_memory-in-memory.o -MD -MP -MF .deps/in_memory-in-memory.Tpo -c -o in_memory-in-memory.o `test -f 'in-memory.c' || echo './'`in-memory.c
mv -f .deps/in_memory-in-memory.Tpo .deps/in_memory-in-memory.Po
/bin/sh ../libtool --tag=CC --mode=link gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o in-memory in_memory-in-memory.o ../lib/libzip.la -lz
libtool: link: gcc -mmacosx-version-min=10.7 -mmacosx-version-min=10.7 -o .libs/in-memory in_memory-in-memory.o ../lib/.libs/libzip.dylib -lz
make[4]: Nothing to be done for `all-am'.
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C libzip-1.2.0 install
Making install in lib
/Applications/Xcode.app/Contents/Developer/usr/bin/make install-recursive
Making install in gladman-fcrypt
make[6]: Nothing to be done for `install-exec-am'.
make[6]: Nothing to be done for `install-data-am'.
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/lib'
/bin/sh ../libtool --mode=install /usr/local/bin/ginstall -c libzip.la '/Users/euphorbium/experiments/Rack/lib'
libtool: install: /usr/local/bin/ginstall -c .libs/libzip.5.dylib /Users/euphorbium/experiments/Rack/lib/libzip.5.dylib
libtool: install: (cd /Users/euphorbium/experiments/Rack/lib && { ln -s -f libzip.5.dylib libzip.dylib || { rm -f libzip.dylib && ln -s libzip.5.dylib libzip.dylib; }; })
libtool: install: /usr/local/bin/ginstall -c .libs/libzip.lai /Users/euphorbium/experiments/Rack/lib/libzip.la
libtool: install: /usr/local/bin/ginstall -c .libs/libzip.a /Users/euphorbium/experiments/Rack/lib/libzip.a
libtool: install: chmod 644 /Users/euphorbium/experiments/Rack/lib/libzip.a
libtool: install: ranlib /Users/euphorbium/experiments/Rack/lib/libzip.a
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/include'
/usr/local/bin/ginstall -c -m 644 zip.h '/Users/euphorbium/experiments/Rack/include'
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/lib/libzip/include'
/usr/local/bin/ginstall -c -m 644 zipconf.h '/Users/euphorbium/experiments/Rack/lib/libzip/include'
Making install in man
make[4]: Nothing to be done for `install-exec-am'.
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/share/man/man1'
/usr/local/bin/ginstall -c -m 644 'zipcmp.man' '/Users/euphorbium/experiments/Rack/share/man/man1/zipcmp.1'
/usr/local/bin/ginstall -c -m 644 'zipmerge.man' '/Users/euphorbium/experiments/Rack/share/man/man1/zipmerge.1'
/usr/local/bin/ginstall -c -m 644 'ziptool.man' '/Users/euphorbium/experiments/Rack/share/man/man1/ziptool.1'
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 'ZIP_SOURCE_GET_ARGS.man' '/Users/euphorbium/experiments/Rack/share/man/man3/ZIP_SOURCE_GET_ARGS.3'
/usr/local/bin/ginstall -c -m 644 'libzip.man' '/Users/euphorbium/experiments/Rack/share/man/man3/libzip.3'
/usr/local/bin/ginstall -c -m 644 'zip_add.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_add.3'
/usr/local/bin/ginstall -c -m 644 'zip_add_dir.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_add_dir.3'
/usr/local/bin/ginstall -c -m 644 'zip_close.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_close.3'
/usr/local/bin/ginstall -c -m 644 'zip_delete.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_delete.3'
/usr/local/bin/ginstall -c -m 644 'zip_dir_add.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_dir_add.3'
/usr/local/bin/ginstall -c -m 644 'zip_discard.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_discard.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_clear.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_clear.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_code_system.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_code_system.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_code_zip.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_code_zip.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_fini.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_fini.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_get.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_get.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_get_sys_type.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_get_sys_type.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_init.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_init.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_set.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_set.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_strerror.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_strerror.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_system_type.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_system_type.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_to_data.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_to_data.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_to_str.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_to_str.3'
/usr/local/bin/ginstall -c -m 644 'zip_errors.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_errors.3'
/usr/local/bin/ginstall -c -m 644 'zip_fclose.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_fclose.3'
/usr/local/bin/ginstall -c -m 644 'zip_fdopen.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_fdopen.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_add.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_add.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_extra_field_delete.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_field_delete.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_extra_field_get.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_field_get.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_extra_field_set.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_field_set.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_extra_fields_count.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_fields_count.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_get_comment.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_get_comment.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_get_error.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_get_error.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_get_external_attributes.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_get_external_attributes.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_rename.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_rename.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_set_comment.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_set_comment.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_set_encryption.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_set_encryption.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_set_external_attributes.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_set_external_attributes.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_set_mtime.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_set_mtime.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_strerror.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_strerror.3'
/usr/local/bin/ginstall -c -m 644 'zip_fopen.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_fopen.3'
/usr/local/bin/ginstall -c -m 644 'zip_fopen_encrypted.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_fopen_encrypted.3'
/usr/local/bin/ginstall -c -m 644 'zip_fread.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_fread.3'
/usr/local/bin/ginstall -c -m 644 'zip_fseek.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_fseek.3'
/usr/local/bin/ginstall -c -m 644 'zip_ftell.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_ftell.3'
/usr/local/bin/ginstall -c -m 644 'zip_get_archive_comment.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_get_archive_comment.3'
/usr/local/bin/ginstall -c -m 644 'zip_get_archive_flag.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_get_archive_flag.3'
/usr/local/bin/ginstall -c -m 644 'zip_get_error.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_get_error.3'
/usr/local/bin/ginstall -c -m 644 'zip_get_file_comment.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_get_file_comment.3'
/usr/local/bin/ginstall -c -m 644 'zip_get_name.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_get_name.3'
/usr/local/bin/ginstall -c -m 644 'zip_get_num_entries.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_get_num_entries.3'
/usr/local/bin/ginstall -c -m 644 'zip_get_num_files.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_get_num_files.3'
/usr/local/bin/ginstall -c -m 644 'zip_name_locate.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_name_locate.3'
/usr/local/bin/ginstall -c -m 644 'zip_open.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_open.3'
/usr/local/bin/ginstall -c -m 644 'zip_rename.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_rename.3'
/usr/local/bin/ginstall -c -m 644 'zip_register_progress_callback.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_register_progress_callback.3'
/usr/local/bin/ginstall -c -m 644 'zip_set_archive_comment.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_set_archive_comment.3'
/usr/local/bin/ginstall -c -m 644 'zip_set_archive_flag.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_set_archive_flag.3'
/usr/local/bin/ginstall -c -m 644 'zip_set_default_password.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_set_default_password.3'
/usr/local/bin/ginstall -c -m 644 'zip_set_file_comment.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_set_file_comment.3'
/usr/local/bin/ginstall -c -m 644 'zip_set_file_compression.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_set_file_compression.3'
/usr/local/bin/ginstall -c -m 644 'zip_source.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_begin_write.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_begin_write.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_buffer.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_buffer.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_close.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_close.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_commit_write.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_commit_write.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_error.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_error.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_file.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_file.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_filep.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_filep.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_free.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_free.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_function.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_function.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_is_deleted.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_is_deleted.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_keep.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_keep.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_make_command_bitmap.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_make_command_bitmap.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_open.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_open.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_read.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_read.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_rollback_write.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_rollback_write.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_seek.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_seek.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_seek_compute_offset.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_seek_compute_offset.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_seek_write.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_seek_write.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_stat.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_stat.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_tell.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_tell.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_tell_write.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_tell_write.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_win32a.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_win32a.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_win32handle.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_win32handle.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_win32w.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_win32w.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_write.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_write.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_zip.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_zip.3'
/usr/local/bin/ginstall -c -m 644 'zip_stat.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_stat.3'
/usr/local/bin/ginstall -c -m 644 'zip_stat_init.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_stat_init.3'
/usr/local/bin/ginstall -c -m 644 'zip_unchange.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_unchange.3'
/usr/local/bin/ginstall -c -m 644 'zip_unchange_all.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_unchange_all.3'
/usr/local/bin/ginstall -c -m 644 'zip_unchange_archive.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_unchange_archive.3'
/Applications/Xcode.app/Contents/Developer/usr/bin/make install-data-hook
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/share/man/man3'
/usr/local/bin/ginstall -c -m 644 'ZIP_SOURCE_GET_ARGS.man' '/Users/euphorbium/experiments/Rack/share/man/man3/ZIP_SOURCE_GET_ARGS.3'
/usr/local/bin/ginstall -c -m 644 'libzip.man' '/Users/euphorbium/experiments/Rack/share/man/man3/libzip.3'
/usr/local/bin/ginstall -c -m 644 'zip_add.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_add.3'
/usr/local/bin/ginstall -c -m 644 'zip_add_dir.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_add_dir.3'
/usr/local/bin/ginstall -c -m 644 'zip_close.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_close.3'
/usr/local/bin/ginstall -c -m 644 'zip_delete.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_delete.3'
/usr/local/bin/ginstall -c -m 644 'zip_dir_add.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_dir_add.3'
/usr/local/bin/ginstall -c -m 644 'zip_discard.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_discard.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_clear.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_clear.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_code_system.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_code_system.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_code_zip.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_code_zip.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_fini.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_fini.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_get.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_get.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_get_sys_type.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_get_sys_type.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_init.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_init.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_set.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_set.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_strerror.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_strerror.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_system_type.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_system_type.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_to_data.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_to_data.3'
/usr/local/bin/ginstall -c -m 644 'zip_error_to_str.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_error_to_str.3'
/usr/local/bin/ginstall -c -m 644 'zip_errors.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_errors.3'
/usr/local/bin/ginstall -c -m 644 'zip_fclose.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_fclose.3'
/usr/local/bin/ginstall -c -m 644 'zip_fdopen.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_fdopen.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_add.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_add.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_extra_field_delete.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_field_delete.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_extra_field_get.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_field_get.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_extra_field_set.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_field_set.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_extra_fields_count.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_fields_count.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_get_comment.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_get_comment.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_get_error.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_get_error.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_get_external_attributes.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_get_external_attributes.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_rename.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_rename.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_set_comment.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_set_comment.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_set_encryption.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_set_encryption.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_set_external_attributes.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_set_external_attributes.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_set_mtime.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_set_mtime.3'
/usr/local/bin/ginstall -c -m 644 'zip_file_strerror.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_file_strerror.3'
/usr/local/bin/ginstall -c -m 644 'zip_fopen.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_fopen.3'
/usr/local/bin/ginstall -c -m 644 'zip_fopen_encrypted.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_fopen_encrypted.3'
/usr/local/bin/ginstall -c -m 644 'zip_fread.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_fread.3'
/usr/local/bin/ginstall -c -m 644 'zip_fseek.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_fseek.3'
/usr/local/bin/ginstall -c -m 644 'zip_ftell.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_ftell.3'
/usr/local/bin/ginstall -c -m 644 'zip_get_archive_comment.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_get_archive_comment.3'
/usr/local/bin/ginstall -c -m 644 'zip_get_archive_flag.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_get_archive_flag.3'
/usr/local/bin/ginstall -c -m 644 'zip_get_error.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_get_error.3'
/usr/local/bin/ginstall -c -m 644 'zip_get_file_comment.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_get_file_comment.3'
/usr/local/bin/ginstall -c -m 644 'zip_get_name.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_get_name.3'
/usr/local/bin/ginstall -c -m 644 'zip_get_num_entries.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_get_num_entries.3'
/usr/local/bin/ginstall -c -m 644 'zip_get_num_files.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_get_num_files.3'
/usr/local/bin/ginstall -c -m 644 'zip_name_locate.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_name_locate.3'
/usr/local/bin/ginstall -c -m 644 'zip_open.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_open.3'
/usr/local/bin/ginstall -c -m 644 'zip_rename.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_rename.3'
/usr/local/bin/ginstall -c -m 644 'zip_register_progress_callback.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_register_progress_callback.3'
/usr/local/bin/ginstall -c -m 644 'zip_set_archive_comment.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_set_archive_comment.3'
/usr/local/bin/ginstall -c -m 644 'zip_set_archive_flag.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_set_archive_flag.3'
/usr/local/bin/ginstall -c -m 644 'zip_set_default_password.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_set_default_password.3'
/usr/local/bin/ginstall -c -m 644 'zip_set_file_comment.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_set_file_comment.3'
/usr/local/bin/ginstall -c -m 644 'zip_set_file_compression.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_set_file_compression.3'
/usr/local/bin/ginstall -c -m 644 'zip_source.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_begin_write.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_begin_write.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_buffer.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_buffer.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_close.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_close.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_commit_write.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_commit_write.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_error.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_error.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_file.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_file.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_filep.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_filep.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_free.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_free.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_function.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_function.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_is_deleted.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_is_deleted.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_keep.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_keep.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_make_command_bitmap.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_make_command_bitmap.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_open.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_open.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_read.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_read.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_rollback_write.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_rollback_write.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_seek.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_seek.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_seek_compute_offset.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_seek_compute_offset.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_seek_write.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_seek_write.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_stat.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_stat.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_tell.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_tell.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_tell_write.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_tell_write.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_win32a.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_win32a.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_win32handle.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_win32handle.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_win32w.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_win32w.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_write.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_write.3'
/usr/local/bin/ginstall -c -m 644 'zip_source_zip.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_source_zip.3'
/usr/local/bin/ginstall -c -m 644 'zip_stat.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_stat.3'
/usr/local/bin/ginstall -c -m 644 'zip_stat_init.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_stat_init.3'
/usr/local/bin/ginstall -c -m 644 'zip_unchange.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_unchange.3'
/usr/local/bin/ginstall -c -m 644 'zip_unchange_all.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_unchange_all.3'
/usr/local/bin/ginstall -c -m 644 'zip_unchange_archive.man' '/Users/euphorbium/experiments/Rack/share/man/man3/zip_unchange_archive.3'
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_error_clear.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_error_get.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_error_init_with_code.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_replace.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_field_delete_by_id.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_field_get_by_id.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_fields_count_by_id.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_fopen_index.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_fopen_index_encrypted.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_replace.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_open_from_source.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_stat_index.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_source_function_create.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_strerror.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_source_win32a_create.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_source_win32handle_create.3
rm -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_source_win32w_create.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_error_clear.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_error_clear.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_error_get.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_error_get.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_error_init.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_error_init_with_code.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_add.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_replace.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_field_delete.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_field_delete_by_id.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_field_get.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_field_get_by_id.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_fields_count.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_extra_fields_count_by_id.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_fopen.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_fopen_index.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_fopen_encrypted.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_fopen_index_encrypted.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_add.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_replace.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_open.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_open_from_source.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_stat.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_stat_index.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_source_function.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_source_function_create.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_file_strerror.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_strerror.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_source_win32a.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_source_win32a_create.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_source_win32handle.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_source_win32handle_create.3
ln -f /Users/euphorbium/experiments/Rack/share/man/man3/zip_source_win32w.3 /Users/euphorbium/experiments/Rack/share/man/man3/zip_source_win32w_create.3
Making install in src
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/bin'
/bin/sh ../libtool --mode=install /usr/local/bin/ginstall -c zipcmp zipmerge ziptool '/Users/euphorbium/experiments/Rack/bin'
libtool: install: /usr/local/bin/ginstall -c .libs/zipcmp /Users/euphorbium/experiments/Rack/bin/zipcmp
libtool: install: /usr/local/bin/ginstall -c .libs/zipmerge /Users/euphorbium/experiments/Rack/bin/zipmerge
libtool: install: /usr/local/bin/ginstall -c .libs/ziptool /Users/euphorbium/experiments/Rack/bin/ziptool
make[4]: Nothing to be done for `install-data-am'.
Making install in regress
not installing shared objects needed only for testing
make[4]: Nothing to be done for `install-data-am'.
Making install in examples
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Nothing to be done for `install-exec-am'.
/usr/local/bin/gmkdir -p '/Users/euphorbium/experiments/Rack/lib/pkgconfig'
/usr/local/bin/ginstall -c -m 644 libzip.pc '/Users/euphorbium/experiments/Rack/lib/pkgconfig'
git clone https://github.com/AndrewBelt/portmidi.git portmidi
Cloning into 'portmidi'...
cd portmidi && cmake . -DCMAKE_INSTALL_PREFIX="/Users/euphorbium/experiments/Rack" -DCMAKE_BUILD_TYPE=Release
-- The C compiler identification is AppleClang 9.0.0.9000037
-- The CXX compiler identification is AppleClang 9.0.0.9000037
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
-- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- SYSROOT:
-- Configuring done
-- Generating done
-- Build files have been written to: /Users/euphorbium/experiments/Rack/dep/portmidi
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C portmidi
Scanning dependencies of target portmidi-static
[ 2%] Building C object pm_common/CMakeFiles/portmidi-static.dir/__/pm_mac/pmmacosxcm.c.o
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:85:22: warning: incompatible pointer to integer conversion initializing 'MIDIClientRef' (aka 'unsigned long') with an expression of type 'void *' [-Wint-conversion]
static MIDIClientRef client = NULL_REF; /* Client handle to the MIDI server */
^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:86:20: warning: incompatible pointer to integer conversion initializing 'MIDIPortRef' (aka 'unsigned long') with an expression of type 'void *' [-Wint-conversion]
static MIDIPortRef portIn = NULL_REF; /* Input port handle */
^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:87:20: warning: incompatible pointer to integer conversion initializing 'MIDIPortRef' (aka 'unsigned long') with an expression of type 'void *' [-Wint-conversion]
static MIDIPortRef portOut = NULL_REF; /* Output port handle */
^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:337:18: warning: comparison between pointer and integer ('MIDIEndpointRef' (aka 'unsigned long') and 'void *')
if (endpoint == NULL_REF) {
~~~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:386:18: warning: comparison between pointer and integer ('MIDIEndpointRef' (aka 'unsigned long') and 'void *')
if (endpoint == NULL_REF) {
~~~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:724:17: warning: incompatible pointer to integer conversion initializing 'MIDIEntityRef' (aka 'unsigned long') with an expression of type 'void *' [-Wint-conversion]
MIDIEntityRef entity = NULL_REF;
^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:726:14: warning: comparison between pointer and integer ('MIDIEntityRef' (aka 'unsigned long') and 'void *')
if (entity == NULL_REF)
~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:740:17: warning: incompatible pointer to integer conversion initializing 'MIDIDeviceRef' (aka 'unsigned long') with an expression of type 'void *' [-Wint-conversion]
MIDIDeviceRef device = NULL_REF;
^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:742:14: warning: comparison between pointer and integer ('MIDIDeviceRef' (aka 'unsigned long') and 'void *')
if (device == NULL_REF)
~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:968:22: warning: comparison between pointer and integer ('MIDIEndpointRef' (aka 'unsigned long') and 'void *')
if (endpoint == NULL_REF) {
~~~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:984:22: warning: comparison between pointer and integer ('MIDIEndpointRef' (aka 'unsigned long') and 'void *')
if (endpoint == NULL_REF) {
~~~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:1009:16: warning: comparison between pointer and integer ('MIDIClientRef' (aka 'unsigned long') and 'void *')
if (client != NULL_REF) MIDIClientDispose(client);
~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:1010:16: warning: comparison between pointer and integer ('MIDIPortRef' (aka 'unsigned long') and 'void *')
if (portIn != NULL_REF) MIDIPortDispose(portIn);
~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:1011:17: warning: comparison between pointer and integer ('MIDIPortRef' (aka 'unsigned long') and 'void *')
if (portOut != NULL_REF) MIDIPortDispose(portOut);
~~~~~~~ ^ ~~~~~~~~
14 warnings generated.
[ 5%] Building C object pm_common/CMakeFiles/portmidi-static.dir/__/pm_mac/pmmac.c.o
[ 8%] Building C object pm_common/CMakeFiles/portmidi-static.dir/__/pm_mac/readbinaryplist.c.o
[ 11%] Building C object pm_common/CMakeFiles/portmidi-static.dir/__/pm_mac/finddefault.c.o
[ 14%] Building C object pm_common/CMakeFiles/portmidi-static.dir/__/porttime/ptmacosx_mach.c.o
/Users/euphorbium/experiments/Rack/dep/portmidi/porttime/ptmacosx_mach.c:17:9: warning: 'NSEC_PER_MSEC' macro redefined [-Wmacro-redefined]
#define NSEC_PER_MSEC 1000000
^
/usr/include/mach/clock_types.h:87:9: note: previous definition is here
#define NSEC_PER_MSEC 1000000ull /* nanoseconds per millisecond */
^
1 warning generated.
/Users/euphorbium/experiments/Rack/dep/portmidi/porttime/ptmacosx_mach.c:17:9: warning: 'NSEC_PER_MSEC' macro redefined [-Wmacro-redefined]
#define NSEC_PER_MSEC 1000000
^
/usr/include/mach/clock_types.h:87:9: note: previous definition is here
#define NSEC_PER_MSEC 1000000ull /* nanoseconds per millisecond */
^
1 warning generated.
[ 17%] Building C object pm_common/CMakeFiles/portmidi-static.dir/pmutil.c.o
[ 20%] Building C object pm_common/CMakeFiles/portmidi-static.dir/portmidi.c.o
[ 23%] Linking C static library libportmidi.a
[ 23%] Built target portmidi-static
Scanning dependencies of target portmidi-dynamic
[ 26%] Building C object pm_common/CMakeFiles/portmidi-dynamic.dir/__/pm_mac/pmmacosxcm.c.o
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:85:22: warning: incompatible pointer to integer conversion initializing 'MIDIClientRef' (aka 'unsigned long') with an expression of type 'void *' [-Wint-conversion]
static MIDIClientRef client = NULL_REF; /* Client handle to the MIDI server */
^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:86:20: warning: incompatible pointer to integer conversion initializing 'MIDIPortRef' (aka 'unsigned long') with an expression of type 'void *' [-Wint-conversion]
static MIDIPortRef portIn = NULL_REF; /* Input port handle */
^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:87:20: warning: incompatible pointer to integer conversion initializing 'MIDIPortRef' (aka 'unsigned long') with an expression of type 'void *' [-Wint-conversion]
static MIDIPortRef portOut = NULL_REF; /* Output port handle */
^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:337:18: warning: comparison between pointer and integer ('MIDIEndpointRef' (aka 'unsigned long') and 'void *')
if (endpoint == NULL_REF) {
~~~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:386:18: warning: comparison between pointer and integer ('MIDIEndpointRef' (aka 'unsigned long') and 'void *')
if (endpoint == NULL_REF) {
~~~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:724:17: warning: incompatible pointer to integer conversion initializing 'MIDIEntityRef' (aka 'unsigned long') with an expression of type 'void *' [-Wint-conversion]
MIDIEntityRef entity = NULL_REF;
^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:726:14: warning: comparison between pointer and integer ('MIDIEntityRef' (aka 'unsigned long') and 'void *')
if (entity == NULL_REF)
~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:740:17: warning: incompatible pointer to integer conversion initializing 'MIDIDeviceRef' (aka 'unsigned long') with an expression of type 'void *' [-Wint-conversion]
MIDIDeviceRef device = NULL_REF;
^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:742:14: warning: comparison between pointer and integer ('MIDIDeviceRef' (aka 'unsigned long') and 'void *')
if (device == NULL_REF)
~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:968:22: warning: comparison between pointer and integer ('MIDIEndpointRef' (aka 'unsigned long') and 'void *')
if (endpoint == NULL_REF) {
~~~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:984:22: warning: comparison between pointer and integer ('MIDIEndpointRef' (aka 'unsigned long') and 'void *')
if (endpoint == NULL_REF) {
~~~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:1009:16: warning: comparison between pointer and integer ('MIDIClientRef' (aka 'unsigned long') and 'void *')
if (client != NULL_REF) MIDIClientDispose(client);
~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:1010:16: warning: comparison between pointer and integer ('MIDIPortRef' (aka 'unsigned long') and 'void *')
if (portIn != NULL_REF) MIDIPortDispose(portIn);
~~~~~~ ^ ~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_mac/pmmacosxcm.c:1011:17: warning: comparison between pointer and integer ('MIDIPortRef' (aka 'unsigned long') and 'void *')
if (portOut != NULL_REF) MIDIPortDispose(portOut);
~~~~~~~ ^ ~~~~~~~~
14 warnings generated.
[ 29%] Building C object pm_common/CMakeFiles/portmidi-dynamic.dir/__/pm_mac/pmmac.c.o
[ 32%] Building C object pm_common/CMakeFiles/portmidi-dynamic.dir/__/pm_mac/readbinaryplist.c.o
[ 35%] Building C object pm_common/CMakeFiles/portmidi-dynamic.dir/__/pm_mac/finddefault.c.o
[ 38%] Building C object pm_common/CMakeFiles/portmidi-dynamic.dir/__/porttime/ptmacosx_mach.c.o
/Users/euphorbium/experiments/Rack/dep/portmidi/porttime/ptmacosx_mach.c:17:9: warning: 'NSEC_PER_MSEC' macro redefined [-Wmacro-redefined]
#define NSEC_PER_MSEC 1000000
^
/usr/include/mach/clock_types.h:87:9: note: previous definition is here
#define NSEC_PER_MSEC 1000000ull /* nanoseconds per millisecond */
^
1 warning generated.
/Users/euphorbium/experiments/Rack/dep/portmidi/porttime/ptmacosx_mach.c:17:9: warning: 'NSEC_PER_MSEC' macro redefined [-Wmacro-redefined]
#define NSEC_PER_MSEC 1000000
^
/usr/include/mach/clock_types.h:87:9: note: previous definition is here
#define NSEC_PER_MSEC 1000000ull /* nanoseconds per millisecond */
^
1 warning generated.
[ 41%] Building C object pm_common/CMakeFiles/portmidi-dynamic.dir/pmutil.c.o
[ 44%] Building C object pm_common/CMakeFiles/portmidi-dynamic.dir/portmidi.c.o
[ 47%] Linking C shared library libportmidi.dylib
[ 47%] Built target portmidi-dynamic
Scanning dependencies of target test_mm
[ 50%] Building C object pm_test/CMakeFiles/test_mm.dir/mm.c.o
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:122:12: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(prompt);
^~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:122:12: note: treat the string as an argument to avoid this
printf(prompt);
^
"%s",
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:139:32: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
else printf(Pm_GetErrorText(count));
^~~~~~~~~~~~~~~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:139:32: note: treat the string as an argument to avoid this
else printf(Pm_GetErrorText(count));
^
"%s",
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:171:16: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(Pm_GetErrorText(err));
^~~~~~~~~~~~~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:171:16: note: treat the string as an argument to avoid this
printf(Pm_GetErrorText(err));
^
"%s",
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:487:12: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(result);
^~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:487:12: note: treat the string as an argument to avoid this
printf(result);
^
"%s",
4 warnings generated.
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:122:12: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(prompt);
^~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:122:12: note: treat the string as an argument to avoid this
printf(prompt);
^
"%s",
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:139:32: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
else printf(Pm_GetErrorText(count));
^~~~~~~~~~~~~~~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:139:32: note: treat the string as an argument to avoid this
else printf(Pm_GetErrorText(count));
^
"%s",
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:171:16: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(Pm_GetErrorText(err));
^~~~~~~~~~~~~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:171:16: note: treat the string as an argument to avoid this
printf(Pm_GetErrorText(err));
^
"%s",
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:487:12: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(result);
^~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/mm.c:487:12: note: treat the string as an argument to avoid this
printf(result);
^
"%s",
4 warnings generated.
[ 52%] Linking C executable test_mm
[ 52%] Built target test_mm
Scanning dependencies of target test_fast
[ 55%] Building C object pm_test/CMakeFiles/test_fast.dir/fast.c.o
[ 58%] Linking C executable test_fast
[ 58%] Built target test_fast
Scanning dependencies of target test_latency
[ 61%] Building C object pm_test/CMakeFiles/test_latency.dir/latency.c.o
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/latency.c:283:12: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(prompt);
^~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/latency.c:283:12: note: treat the string as an argument to avoid this
printf(prompt);
^
"%s",
1 warning generated.
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/latency.c:283:12: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(prompt);
^~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/latency.c:283:12: note: treat the string as an argument to avoid this
printf(prompt);
^
"%s",
1 warning generated.
[ 64%] Linking C executable test_latency
[ 64%] Built target test_latency
Scanning dependencies of target test_test
[ 67%] Building C object pm_test/CMakeFiles/test_test.dir/test.c.o
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/test.c:40:12: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(prompt);
^~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/test.c:40:12: note: treat the string as an argument to avoid this
printf(prompt);
^
"%s",
1 warning generated.
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/test.c:40:12: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(prompt);
^~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/test.c:40:12: note: treat the string as an argument to avoid this
printf(prompt);
^
"%s",
1 warning generated.
[ 70%] Linking C executable test_test
[ 70%] Built target test_test
Scanning dependencies of target test_qtest
[ 73%] Building C object pm_test/CMakeFiles/test_qtest.dir/qtest.c.o
[ 76%] Linking C executable test_qtest
[ 76%] Built target test_qtest
Scanning dependencies of target test_midiclock
[ 79%] Building C object pm_test/CMakeFiles/test_midiclock.dir/midiclock.c.o
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/midiclock.c:170:12: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(prompt);
^~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/midiclock.c:170:12: note: treat the string as an argument to avoid this
printf(prompt);
^
"%s",
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/midiclock.c:259:16: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(Pm_GetErrorText(err));
^~~~~~~~~~~~~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/midiclock.c:259:16: note: treat the string as an argument to avoid this
printf(Pm_GetErrorText(err));
^
"%s",
2 warnings generated.
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/midiclock.c:170:12: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(prompt);
^~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/midiclock.c:170:12: note: treat the string as an argument to avoid this
printf(prompt);
^
"%s",
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/midiclock.c:259:16: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(Pm_GetErrorText(err));
^~~~~~~~~~~~~~~~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/midiclock.c:259:16: note: treat the string as an argument to avoid this
printf(Pm_GetErrorText(err));
^
"%s",
2 warnings generated.
[ 82%] Linking C executable test_midiclock
[ 82%] Built target test_midiclock
Scanning dependencies of target test_midithru
[ 85%] Building C object pm_test/CMakeFiles/test_midithru.dir/midithru.c.o
[ 88%] Linking C executable test_midithru
[ 88%] Built target test_midithru
Scanning dependencies of target test_midithread
[ 91%] Building C object pm_test/CMakeFiles/test_midithread.dir/midithread.c.o
[ 94%] Linking C executable test_midithread
[ 94%] Built target test_midithread
Scanning dependencies of target test_sysex
[ 97%] Building C object pm_test/CMakeFiles/test_sysex.dir/sysex.c.o
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/sysex.c:42:12: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(prompt);
^~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/sysex.c:42:12: note: treat the string as an argument to avoid this
printf(prompt);
^
"%s",
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/sysex.c:174:44: warning: format specifies type 'int' but the argument has type 'long' [-Wformat]
printf("Cummulative bytes/sec: %d\n", total_bytes / seconds);
~~ ^~~~~~~~~~~~~~~~~~~~~
%ld
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/sysex.c:328:16: warning: implicit conversion from enumeration type 'PtError' to different enumeration type 'PmError' [-Wenum-conversion]
if ((err = Pt_Start(1, receive_poll, 0))) {
~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 warnings generated.
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/sysex.c:42:12: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
printf(prompt);
^~~~~~
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/sysex.c:42:12: note: treat the string as an argument to avoid this
printf(prompt);
^
"%s",
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/sysex.c:174:44: warning: format specifies type 'int' but the argument has type 'long' [-Wformat]
printf("Cummulative bytes/sec: %d\n", total_bytes / seconds);
~~ ^~~~~~~~~~~~~~~~~~~~~
%ld
/Users/euphorbium/experiments/Rack/dep/portmidi/pm_test/sysex.c:328:16: warning: implicit conversion from enumeration type 'PtError' to different enumeration type 'PmError' [-Wenum-conversion]
if ((err = Pt_Start(1, receive_poll, 0))) {
~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 warnings generated.
[100%] Linking C executable test_sysex
[100%] Built target test_sysex
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C portmidi install
[ 23%] Built target portmidi-static
[ 47%] Built target portmidi-dynamic
[ 52%] Built target test_mm
[ 58%] Built target test_fast
[ 64%] Built target test_latency
[ 70%] Built target test_test
[ 76%] Built target test_qtest
[ 82%] Built target test_midiclock
[ 88%] Built target test_midithru
[ 94%] Built target test_midithread
[100%] Built target test_sysex
Install the project...
-- Install configuration: "Release"
-- Installing: /Users/euphorbium/experiments/Rack/lib/libportmidi.a
-- Installing: /Users/euphorbium/experiments/Rack/lib/libportmidi.dylib
-- Installing: /Users/euphorbium/experiments/Rack/include/portmidi.h
-- Installing: /Users/euphorbium/experiments/Rack/include/porttime.h
wget -nc http://www.portaudio.com/archives/pa_stable_v190600_20161030.tgz
--2017-09-22 12:11:42-- http://www.portaudio.com/archives/pa_stable_v190600_20161030.tgz
Resolving www.portaudio.com... 107.22.210.58
Connecting to www.portaudio.com|107.22.210.58|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1450572 (1.4M) [application/x-gzip]
Saving to: 'pa_stable_v190600_20161030.tgz'
0K .......... .......... .......... .......... .......... 3% 202K 7s
50K .......... .......... .......... .......... .......... 7% 441K 5s
100K .......... .......... .......... .......... .......... 10% 2.12M 3s
150K .......... .......... .......... .......... .......... 14% 520K 3s
200K .......... .......... .......... .......... .......... 17% 2.67M 2s
250K .......... .......... .......... .......... .......... 21% 2.28M 2s
300K .......... .......... .......... .......... .......... 24% 584K 2s
350K .......... .......... .......... .......... .......... 28% 2.97M 2s
400K .......... .......... .......... .......... .......... 31% 2.18M 1s
450K .......... .......... .......... .......... .......... 35% 620K 1s
500K .......... .......... .......... .......... .......... 38% 2.69M 1s
550K .......... .......... .......... .......... .......... 42% 2.20M 1s
600K .......... .......... .......... .......... .......... 45% 702K 1s
650K .......... .......... .......... .......... .......... 49% 1.63M 1s
700K .......... .......... .......... .......... .......... 52% 3.77M 1s
750K .......... .......... .......... .......... .......... 56% 3.13M 1s
800K .......... .......... .......... .......... .......... 60% 673K 1s
850K .......... .......... .......... .......... .......... 63% 1.58M 1s
900K .......... .......... .......... .......... .......... 67% 4.06M 0s
950K .......... .......... .......... .......... .......... 70% 896K 0s
1000K .......... .......... .......... .......... .......... 74% 1.01M 0s
1050K .......... .......... .......... .......... .......... 77% 3.24M 0s
1100K .......... .......... .......... .......... .......... 81% 2.86M 0s
1150K .......... .......... .......... .......... .......... 84% 986K 0s
1200K .......... .......... .......... .......... .......... 88% 1.12M 0s
1250K .......... .......... .......... .......... .......... 91% 3.28M 0s
1300K .......... .......... .......... .......... .......... 95% 2.19M 0s
1350K .......... .......... .......... .......... .......... 98% 1.21M 0s
1400K .......... ...... 100% 1.33M=1.3s
2017-09-22 12:11:44 (1.04 MB/s) - 'pa_stable_v190600_20161030.tgz' saved [1450572/1450572]
tar xf pa_stable_v190600_20161030.tgz
cd portaudio && ./configure --prefix="/Users/euphorbium/experiments/Rack"
checking build system type... x86_64-apple-darwin16.7.0
checking host system type... x86_64-apple-darwin16.7.0
checking target system type... x86_64-apple-darwin16.7.0
checking for gcc... gcc
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 gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/local/bin/sed
checking for grep that handles long lines and -e... /usr/local/bin/grep
checking for egrep... /usr/local/bin/grep -E
checking for fgrep... /usr/local/bin/grep -F
checking for ld used by gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
checking if the linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) is GNU ld... no
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 196608
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-apple-darwin16.7.0 file names to x86_64-apple-darwin16.7.0 format... func_convert_file_noop
checking how to convert x86_64-apple-darwin16.7.0 file names to toolchain format... func_convert_file_noop
checking for /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... dlltool
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... no
checking for strip... strip
checking for ranlib... ranlib
checking for gawk... gawk
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking for dsymutil... dsymutil
checking for nmedit... nmedit
checking for lipo... lipo
checking for otool... otool
checking for otool64... no
checking for -single_module linker flag... yes
checking for -exported_symbols_list linker flag... yes
checking for -force_load linker flag... yes
checking how to run the C preprocessor... gcc -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 for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... yes
checking for gcc option to produce PIC... -fno-common -DPIC
checking if gcc PIC flag -fno-common -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... darwin16.7.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for a BSD-compatible install... /usr/local/bin/ginstall -c
checking whether ln -s works... yes
checking for ar... /usr/bin/ar
checking whether byte ordering is bigendian... no
checking for snd_pcm_open in -lasound... no
checking for HPI_SubSysCreate in -lhpi... no
checking sys/soundcard.h usability... no
checking sys/soundcard.h presence... no
checking for sys/soundcard.h... no
checking linux/soundcard.h usability... no
checking linux/soundcard.h presence... no
checking for linux/soundcard.h... no
checking machine/soundcard.h usability... no
checking machine/soundcard.h presence... no
checking for machine/soundcard.h... no
checking for pkg-config... /usr/local/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for JACK... no
checking size of short... 2
checking size of int... 4
checking size of long... 8
checking for clock_gettime in -lrt... no
checking for clock_gettime... yes
checking for nanosleep... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating portaudio-2.0.pc
config.status: executing libtool commands
Configuration summary:
Target ...................... x86_64-apple-darwin16.7.0
C++ bindings ................ no
Debug output ................ no
Mac debug flags ............. no
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C portaudio
mkdir lib
mkdir -p src/common src/hostapi/alsa src/hostapi/asihpi src/hostapi/asio src/hostapi/coreaudio src/hostapi/dsound src/hostapi/jack src/hostapi/oss src/hostapi/wasapi src/hostapi/wdmks src/hostapi/wmme src/os/unix src/os/win
touch lib-stamp
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_allocation.c -o src/common/pa_allocation.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_allocation.c -fno-common -DPIC -o src/common/.libs/pa_allocation.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_allocation.c -o src/common/pa_allocation.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_converters.c -o src/common/pa_converters.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_converters.c -fno-common -DPIC -o src/common/.libs/pa_converters.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_converters.c -o src/common/pa_converters.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_cpuload.c -o src/common/pa_cpuload.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_cpuload.c -fno-common -DPIC -o src/common/.libs/pa_cpuload.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_cpuload.c -o src/common/pa_cpuload.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_dither.c -o src/common/pa_dither.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_dither.c -fno-common -DPIC -o src/common/.libs/pa_dither.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_dither.c -o src/common/pa_dither.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_debugprint.c -o src/common/pa_debugprint.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_debugprint.c -fno-common -DPIC -o src/common/.libs/pa_debugprint.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_debugprint.c -o src/common/pa_debugprint.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_front.c -o src/common/pa_front.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_front.c -fno-common -DPIC -o src/common/.libs/pa_front.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_front.c -o src/common/pa_front.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_process.c -o src/common/pa_process.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_process.c -fno-common -DPIC -o src/common/.libs/pa_process.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_process.c -o src/common/pa_process.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_stream.c -o src/common/pa_stream.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_stream.c -fno-common -DPIC -o src/common/.libs/pa_stream.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_stream.c -o src/common/pa_stream.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_trace.c -o src/common/pa_trace.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_trace.c -fno-common -DPIC -o src/common/.libs/pa_trace.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_trace.c -o src/common/pa_trace.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/skeleton/pa_hostapi_skeleton.c -o src/hostapi/skeleton/pa_hostapi_skeleton.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/skeleton/pa_hostapi_skeleton.c -fno-common -DPIC -o src/hostapi/skeleton/.libs/pa_hostapi_skeleton.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/skeleton/pa_hostapi_skeleton.c -o src/hostapi/skeleton/pa_hostapi_skeleton.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/os/unix/pa_unix_hostapis.c -o src/os/unix/pa_unix_hostapis.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/os/unix/pa_unix_hostapis.c -fno-common -DPIC -o src/os/unix/.libs/pa_unix_hostapis.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/os/unix/pa_unix_hostapis.c -o src/os/unix/pa_unix_hostapis.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/os/unix/pa_unix_util.c -o src/os/unix/pa_unix_util.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/os/unix/pa_unix_util.c -fno-common -DPIC -o src/os/unix/.libs/pa_unix_util.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/os/unix/pa_unix_util.c -o src/os/unix/pa_unix_util.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core.c -o src/hostapi/coreaudio/pa_mac_core.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core.c -fno-common -DPIC -o src/hostapi/coreaudio/.libs/pa_mac_core.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core.c -o src/hostapi/coreaudio/pa_mac_core.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core_utilities.c -o src/hostapi/coreaudio/pa_mac_core_utilities.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core_utilities.c -fno-common -DPIC -o src/hostapi/coreaudio/.libs/pa_mac_core_utilities.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core_utilities.c -o src/hostapi/coreaudio/pa_mac_core_utilities.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core_blocking.c -o src/hostapi/coreaudio/pa_mac_core_blocking.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core_blocking.c -fno-common -DPIC -o src/hostapi/coreaudio/.libs/pa_mac_core_blocking.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/hostapi/coreaudio/pa_mac_core_blocking.c -o src/hostapi/coreaudio/pa_mac_core_blocking.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_ringbuffer.c -o src/common/pa_ringbuffer.lo
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_ringbuffer.c -fno-common -DPIC -o src/common/.libs/pa_ringbuffer.o
libtool: compile: gcc -c -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_ringbuffer.c -o src/common/pa_ringbuffer.o >/dev/null 2>&1
/bin/sh ./libtool --mode=link gcc -mmacosx-version-min=10.7 -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon -dynamiclib -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -rpath /Users/euphorbium/experiments/Rack/lib -no-undefined -export-symbols-regex "(Pa|PaMacCore|PaJack|PaAlsa|PaAsio|PaOSS)_.*" -version-info 2:0:0 -o lib/libportaudio.la src/common/pa_allocation.lo src/common/pa_converters.lo src/common/pa_cpuload.lo src/common/pa_dither.lo src/common/pa_debugprint.lo src/common/pa_front.lo src/common/pa_process.lo src/common/pa_stream.lo src/common/pa_trace.lo src/hostapi/skeleton/pa_hostapi_skeleton.lo src/os/unix/pa_unix_hostapis.lo src/os/unix/pa_unix_util.lo src/hostapi/coreaudio/pa_mac_core.lo src/hostapi/coreaudio/pa_mac_core_utilities.lo src/hostapi/coreaudio/pa_mac_core_blocking.lo src/common/pa_ringbuffer.lo
libtool: link: /usr/bin/nm -B src/common/.libs/pa_allocation.o src/common/.libs/pa_converters.o src/common/.libs/pa_cpuload.o src/common/.libs/pa_dither.o src/common/.libs/pa_debugprint.o src/common/.libs/pa_front.o src/common/.libs/pa_process.o src/common/.libs/pa_stream.o src/common/.libs/pa_trace.o src/hostapi/skeleton/.libs/pa_hostapi_skeleton.o src/os/unix/.libs/pa_unix_hostapis.o src/os/unix/.libs/pa_unix_util.o src/hostapi/coreaudio/.libs/pa_mac_core.o src/hostapi/coreaudio/.libs/pa_mac_core_utilities.o src/hostapi/coreaudio/.libs/pa_mac_core_blocking.o src/common/.libs/pa_ringbuffer.o | sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p' | sed '/ __gnu_lto/d' | /usr/local/bin/sed 's/.* //' | sort | uniq > lib/.libs/libportaudio.exp
libtool: link: /usr/local/bin/grep -E -e "(Pa|PaMacCore|PaJack|PaAlsa|PaAsio|PaOSS)_.*" "lib/.libs/libportaudio.exp" > "lib/.libs/libportaudio.expT"
libtool: link: mv -f "lib/.libs/libportaudio.expT" "lib/.libs/libportaudio.exp"
libtool: link: sed 's,^,_,' < lib/.libs/libportaudio.exp > lib/.libs/libportaudio-symbols.expsym
libtool: link: gcc -dynamiclib -o lib/.libs/libportaudio.2.dylib src/common/.libs/pa_allocation.o src/common/.libs/pa_converters.o src/common/.libs/pa_cpuload.o src/common/.libs/pa_dither.o src/common/.libs/pa_debugprint.o src/common/.libs/pa_front.o src/common/.libs/pa_process.o src/common/.libs/pa_stream.o src/common/.libs/pa_trace.o src/hostapi/skeleton/.libs/pa_hostapi_skeleton.o src/os/unix/.libs/pa_unix_hostapis.o src/os/unix/.libs/pa_unix_util.o src/hostapi/coreaudio/.libs/pa_mac_core.o src/hostapi/coreaudio/.libs/pa_mac_core_utilities.o src/hostapi/coreaudio/.libs/pa_mac_core_blocking.o src/common/.libs/pa_ringbuffer.o -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon -mmacosx-version-min=10.7 -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon -install_name /Users/euphorbium/experiments/Rack/lib/libportaudio.2.dylib -compatibility_version 3 -current_version 3.0 -Wl,-single_module -Wl,-exported_symbols_list,lib/.libs/libportaudio-symbols.expsym
libtool: link: (cd "lib/.libs" && rm -f "libportaudio.dylib" && ln -s "libportaudio.2.dylib" "libportaudio.dylib")
libtool: link: /usr/bin/ar cru lib/.libs/libportaudio.a src/common/pa_allocation.o src/common/pa_converters.o src/common/pa_cpuload.o src/common/pa_dither.o src/common/pa_debugprint.o src/common/pa_front.o src/common/pa_process.o src/common/pa_stream.o src/common/pa_trace.o src/hostapi/skeleton/pa_hostapi_skeleton.o src/os/unix/pa_unix_hostapis.o src/os/unix/pa_unix_util.o src/hostapi/coreaudio/pa_mac_core.o src/hostapi/coreaudio/pa_mac_core_utilities.o src/hostapi/coreaudio/pa_mac_core_blocking.o src/common/pa_ringbuffer.o
libtool: link: ranlib lib/.libs/libportaudio.a
libtool: link: ( cd "lib/.libs" && rm -f "libportaudio.la" && ln -s "../libportaudio.la" "libportaudio.la" )
if test -n "" ; then for dir in ""; do /Applications/Xcode.app/Contents/Developer/usr/bin/make -C $dir all; done ; fi
mkdir bin
touch bin-stamp
/bin/sh ./libtool --mode=link gcc -o bin/patest1 -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest1.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest1 -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest1.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_buffer -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_buffer.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_buffer -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_buffer.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_callbackstop -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_callbackstop.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_callbackstop -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_callbackstop.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_clip -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_clip.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_clip -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_clip.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_dither -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_dither.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_dither -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_dither.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_hang -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_hang.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_hang -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_hang.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_in_overflow -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_in_overflow.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_in_overflow -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_in_overflow.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_latency -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_latency.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_latency -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_latency.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_leftright -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_leftright.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_leftright -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_leftright.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_longsine -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_longsine.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_longsine -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_longsine.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_many -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_many.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_many -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_many.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_maxsines -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_maxsines.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_maxsines -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_maxsines.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_mono -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_mono.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_mono -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_mono.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_multi_sine -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_multi_sine.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_multi_sine -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_multi_sine.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_out_underflow -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_out_underflow.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_out_underflow -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_out_underflow.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_prime -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_prime.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_prime -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_prime.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_ringmix -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_ringmix.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_ringmix -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_ringmix.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_sine8 -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine8.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_sine8 -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine8.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_sine_channelmaps -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_channelmaps.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_sine_channelmaps -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_channelmaps.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_sine_formats -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_formats.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_sine_formats -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_formats.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_sine_time -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_time.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_sine_time -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_time.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_sine_srate -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_srate.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_sine_srate -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_sine_srate.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_start_stop -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_start_stop.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_start_stop -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_start_stop.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_stop -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_stop.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_stop -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_stop.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_stop_playout -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_stop_playout.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_stop_playout -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_stop_playout.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_toomanysines -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_toomanysines.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_toomanysines -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_toomanysines.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_two_rates -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_two_rates.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_two_rates -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_two_rates.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_underflow -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_underflow.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_underflow -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_underflow.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/patest_wire -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_wire.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/patest_wire -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/patest_wire.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/pa_minlat -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/pa_minlat.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/pa_minlat -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./test/pa_minlat.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/pa_devs -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/pa_devs.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/pa_devs -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/pa_devs.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/pa_fuzz -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/pa_fuzz.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/pa_fuzz -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/pa_fuzz.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/paex_pink -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_pink.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/paex_pink -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_pink.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/paex_read_write_wire -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_read_write_wire.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/paex_read_write_wire -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_read_write_wire.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/paex_record -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_record.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/paex_record -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_record.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/paex_saw -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_saw.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/paex_saw -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_saw.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/paex_sine -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_sine.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/paex_sine -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_sine.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/paex_write_sine -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_write_sine.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/paex_write_sine -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_write_sine.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/paex_write_sine_nonint -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_write_sine_nonint.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/paex_write_sine_nonint -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./examples/paex_write_sine_nonint.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/paqa_devs -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./qa/paqa_devs.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/paqa_devs -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./qa/paqa_devs.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/paqa_errs -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./qa/paqa_errs.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/paqa_errs -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./qa/paqa_errs.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/bin/sh ./libtool --mode=link gcc -o bin/paqa_latency -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./qa/paqa_latency.c lib/libportaudio.la -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
libtool: link: gcc -o bin/.libs/paqa_latency -std=c99 -O2 -Wall -pedantic -pipe -fPIC -DNDEBUG -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -Wno-deprecated -Werror -arch i386 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -mmacosx-version-min=10.4 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 ./qa/paqa_latency.c lib/.libs/libportaudio.dylib -framework Carbon -framework AudioUnit -framework AudioToolbox -framework CoreAudio
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C portaudio install
/usr/local/bin/ginstall -c -d /Users/euphorbium/experiments/Rack/lib
/bin/sh ./libtool --mode=install /usr/local/bin/ginstall -c lib/libportaudio.la /Users/euphorbium/experiments/Rack/lib
libtool: install: /usr/local/bin/ginstall -c lib/.libs/libportaudio.2.dylib /Users/euphorbium/experiments/Rack/lib/libportaudio.2.dylib
libtool: install: (cd /Users/euphorbium/experiments/Rack/lib && { ln -s -f libportaudio.2.dylib libportaudio.dylib || { rm -f libportaudio.dylib && ln -s libportaudio.2.dylib libportaudio.dylib; }; })
libtool: install: /usr/local/bin/ginstall -c lib/.libs/libportaudio.lai /Users/euphorbium/experiments/Rack/lib/libportaudio.la
libtool: install: /usr/local/bin/ginstall -c lib/.libs/libportaudio.a /Users/euphorbium/experiments/Rack/lib/libportaudio.a
libtool: install: chmod 644 /Users/euphorbium/experiments/Rack/lib/libportaudio.a
libtool: install: ranlib /Users/euphorbium/experiments/Rack/lib/libportaudio.a
/usr/local/bin/ginstall -c -d /Users/euphorbium/experiments/Rack/include
for include in portaudio.h; do \
/usr/local/bin/ginstall -c -m 644 -m 644 ./include/$include /Users/euphorbium/experiments/Rack/include/$include; \
done
/usr/local/bin/ginstall -c -d /Users/euphorbium/experiments/Rack/lib/pkgconfig
/usr/local/bin/ginstall -c -m 644 portaudio-2.0.pc /Users/euphorbium/experiments/Rack/lib/pkgconfig/portaudio-2.0.pc
------------------------------------------------------------
PortAudio was successfully installed.
On some systems (e.g. Linux) you should run 'ldconfig' now
to make the shared object available. You may also need to
modify your LD_LIBRARY_PATH environment variable to include
the directory /Users/euphorbium/experiments/Rack/lib
------------------------------------------------------------
/Applications/Xcode.app/Contents/Developer/usr/bin/make install-recursive
if test -n "" ; then for dir in ""; do /Applications/Xcode.app/Contents/Developer/usr/bin/make -C $dir install; done ; fi
#######################################
# Built all dependencies successfully #
#######################################
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment