Created
September 13, 2012 15:04
-
-
Save lra/3714923 to your computer and use it in GitHub Desktop.
Trying to install node
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HOMEBREW_MAKE_JOBS=1 VERBOSE=1 brew install node | |
==> Downloading http://nodejs.org/dist/v0.8.8/node-v0.8.8.tar.gz | |
Already downloaded: /Library/Caches/Homebrew/node-0.8.8.tar.gz | |
/usr/bin/tar xf /Library/Caches/Homebrew/node-0.8.8.tar.gz | |
==> ./configure --prefix=/usr/local/Cellar/node/0.8.8 | |
./configure --prefix=/usr/local/Cellar/node/0.8.8 | |
{ 'target_defaults': { 'cflags': [], | |
'default_configuration': 'Release', | |
'defines': [], | |
'include_dirs': [], | |
'libraries': []}, | |
'variables': { 'clang': 1, | |
'host_arch': 'x64', | |
'node_install_npm': 'true', | |
'node_install_waf': 'true', | |
'node_prefix': '/usr/local/Cellar/node/0.8.8', | |
'node_shared_openssl': 'false', | |
'node_shared_v8': 'false', | |
'node_shared_zlib': 'false', | |
'node_use_dtrace': 'false', | |
'node_use_etw': 'false', | |
'node_use_openssl': 'true', | |
'target_arch': 'x64', | |
'v8_no_strict_aliasing': 1, | |
'v8_use_snapshot': 'true'}} | |
creating ./config.gypi | |
creating ./config.mk | |
xcode-select: Error: No Xcode is selected. Use xcode-select -switch <path-to-xcode>, or see the xcode-select manpage (man xcode-select) for further information. | |
Traceback (most recent call last): | |
File "tools/gyp_node", line 58, in <module> | |
run_gyp(gyp_args) | |
File "tools/gyp_node", line 18, in run_gyp | |
rc = gyp.main(args) | |
File "./tools/gyp/pylib/gyp/__init__.py", line 480, in main | |
generator.GenerateOutput(flat_list, targets, data, params) | |
File "./tools/gyp/pylib/gyp/generator/make.py", line 2082, in GenerateOutput | |
part_of_all=qualified_target in needed_targets) | |
File "./tools/gyp/pylib/gyp/generator/make.py", line 764, in Write | |
self.Pchify)) | |
File "./tools/gyp/pylib/gyp/generator/make.py", line 1137, in WriteSources | |
cflags = self.xcode_settings.GetCflags(configname) | |
File "./tools/gyp/pylib/gyp/xcode_emulation.py", line 259, in GetCflags | |
sdk_root = self._SdkPath() | |
File "./tools/gyp/pylib/gyp/xcode_emulation.py", line 248, in _SdkPath | |
return os.path.join(self._GetSdkBaseDir(), '%s.sdk' % sdk_root) | |
File "./tools/gyp/pylib/gyp/xcode_emulation.py", line 234, in _GetSdkBaseDir | |
raise Exception('Error %d running xcode-select' % job.returncode) | |
Exception: Error 2 running xcode-select | |
==> make install | |
make install | |
/usr/bin/make -C out BUILDTYPE=Release V=1 | |
make[1]: Nothing to be done for `all'. | |
ln -fs out/Release/node node | |
python tools/install.py install | |
installing /usr/local/Cellar/node/0.8.8/include/node/ares.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/ares_version.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/uv.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/v8-debug.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/v8-preparser.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/v8-profiler.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/v8-testing.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/v8.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/v8stdint.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/eio-emul.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/ev-emul.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/node.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/node_buffer.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/node_object_wrap.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/node_version.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/uv-private/eio.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/uv-private/ev.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/uv-private/ngx-queue.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/uv-private/tree.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/uv-private/uv-unix.h | |
installing /usr/local/Cellar/node/0.8.8/include/node/uv-private/uv-win.h | |
installing /usr/local/Cellar/node/0.8.8/share/man/man1/node.1 | |
installing /usr/local/Cellar/node/0.8.8/bin/node | |
Traceback (most recent call last): | |
File "tools/install.py", line 225, in <module> | |
run(sys.argv[:]) | |
File "tools/install.py", line 220, in run | |
if cmd == 'install': return files(install) | |
File "tools/install.py", line 195, in files | |
action(['out/Release/node'], 'bin/node') | |
File "tools/install.py", line 74, in install | |
def install(paths, dst): map(lambda path: try_copy(path, dst), paths) | |
File "tools/install.py", line 74, in <lambda> | |
def install(paths, dst): map(lambda path: try_copy(path, dst), paths) | |
File "tools/install.py", line 66, in try_copy | |
return shutil.copy2(source_path, target_path) | |
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 127, in copy2 | |
copyfile(src, dst) | |
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 81, in copyfile | |
with open(src, 'rb') as fsrc: | |
IOError: [Errno 2] No such file or directory: 'out/Release/node' | |
make: *** [install] Error 1 | |
==> Exit Status: 2 | |
https://github.com/mxcl/master/blob/master/Library/Formula/node.rb#L73 | |
==> Build Environment | |
HOMEBREW_VERSION: 0.9.3 | |
HEAD: 3a052fe00b3dc86eaed243e175cc49b041249b0c | |
CPU: quad-core 64-bit sandybridge | |
OS X: 10.8.1-x86_64 | |
Xcode: 4.4 (guessed) | |
CLT: 4.4.0.0.1.1249367152 | |
X11: N/A | |
CC: cc | |
CXX: c++ | |
LD: cc | |
MAKEFLAGS: -j1 | |
CMAKE_PREFIX_PATH: /usr/local | |
CMAKE_INCLUDE_PATH: /usr/include/libxml2:/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers/ | |
CMAKE_LIBRARY_PATH: /System/Library/Frameworks/OpenGL.framework/Versions/Current/Libraries | |
PKG_CONFIG_PATH: /usr/local/lib/pkgconfig:/usr/local/Library/Homebrew/pkgconfig | |
HOMEBREW_MAKE_JOBS: 1 | |
ACLOCAL_PATH: /usr/local/share/aclocal | |
PATH: /usr/local/Library/ENV/4.3:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin | |
Error: Failed executing: make install (node.rb:73) | |
This link will help resolve the above errors: | |
https://github.com/mxcl/homebrew/wiki/bug-fixing-checklist | |
-------------------------------------------------------------------------------- | |
brew doctor | |
Your system is raring to brew. | |
-------------------------------------------------------------------------------- | |
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by graphviz configure 2.28.0, which was | |
generated by GNU Autoconf 2.65. Invocation command line was | |
$ ./configure --disable-debug --disable-dependency-tracking --prefix=/usr/local/Cellar/graphviz/2.28.0 --with-qt=no --with-quartz --without-pangocairo | |
## --------- ## | |
## Platform. ## | |
## --------- ## | |
hostname = lolo.local | |
uname -m = x86_64 | |
uname -r = 11.4.0 | |
uname -s = Darwin | |
uname -v = Darwin Kernel Version 11.4.0: Mon Apr 9 19:32:15 PDT 2012; root:xnu-1699.26.8~1/RELEASE_X86_64 | |
/usr/bin/uname -p = i386 | |
/bin/uname -X = unknown | |
/bin/arch = unknown | |
/usr/bin/arch -k = unknown | |
/usr/convex/getsysinfo = unknown | |
/usr/bin/hostinfo = Mach kernel version: | |
Darwin Kernel Version 11.4.0: Mon Apr 9 19:32:15 PDT 2012; root:xnu-1699.26.8~1/RELEASE_X86_64 | |
Kernel configured for up to 4 processors. | |
2 processors are physically available. | |
4 processors are logically available. | |
Processor type: i486 (Intel 80486) | |
Processors active: 0 1 2 3 | |
Primary memory available: 4.00 gigabytes | |
Default processor set: 99 tasks, 482 threads, 4 processors | |
Load average: 3.32, Mach factor: 1.41 | |
/bin/machine = unknown | |
/usr/bin/oslevel = unknown | |
/bin/universe = unknown | |
PATH: /usr/local/Cellar/gettext/0.18.1.1/bin | |
PATH: /usr/X11/bin | |
PATH: /usr/local/sbin | |
PATH: /usr/local/bin | |
PATH: /Users/laurent/bin | |
PATH: /usr/bin | |
PATH: /bin | |
PATH: /usr/sbin | |
PATH: /sbin | |
PATH: /usr/local/bin | |
PATH: /usr/X11/bin | |
PATH: /usr/local/Cellar/rds-command-line-tools/1.6.001/bin | |
PATH: /usr/local/Library/Contributions/cmds | |
## ----------- ## | |
## Core tests. ## | |
## ----------- ## | |
configure:3307: checking build system type | |
configure:3321: result: x86_64-apple-darwin11.4.0 | |
configure:3341: checking host system type | |
configure:3354: result: x86_64-apple-darwin11.4.0 | |
configure:3561: checking for a BSD-compatible install | |
configure:3629: result: /usr/bin/install -c | |
configure:3640: checking whether build environment is sane | |
configure:3690: result: yes | |
configure:3831: checking for a thread-safe mkdir -p | |
configure:3870: result: config/install-sh -c -d | |
configure:3883: checking for gawk | |
configure:3913: result: no | |
configure:3883: checking for mawk | |
configure:3913: result: no | |
configure:3883: checking for nawk | |
configure:3913: result: no | |
configure:3883: checking for awk | |
configure:3899: found /usr/bin/awk | |
configure:3910: result: awk | |
configure:3921: checking whether make sets $(MAKE) | |
configure:3943: result: yes | |
configure:4247: checking for style of include used by make | |
configure:4275: result: GNU | |
configure:4345: checking for gcc | |
configure:4372: result: /usr/bin/llvm-gcc | |
configure:4601: checking for C compiler version | |
configure:4610: /usr/bin/llvm-gcc --version >&5 | |
i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00) | |
Copyright (C) 2007 Free Software Foundation, Inc. | |
This is free software; see the source for copying conditions. There is NO | |
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
configure:4621: $? = 0 | |
configure:4610: /usr/bin/llvm-gcc -v >&5 | |
Using built-in specs. | |
Target: i686-apple-darwin11 | |
Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.9~22/src/configure --disable-checking --enable-werror --prefix=/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2 --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin11 --enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-2336.9~22/dst-llvmCore/Developer/usr/local --program-prefix=i686-apple-darwin11- --host=x86_64-apple-darwin11 --target=i686-apple-darwin11 --with-gxx-include-dir=/usr/include/c++/4.2.1 | |
Thread model: posix | |
gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00) | |
configure:4621: $? = 0 | |
configure:4610: /usr/bin/llvm-gcc -V >&5 | |
llvm-gcc-4.2: argument to `-V' is missing | |
configure:4621: $? = 1 | |
configure:4610: /usr/bin/llvm-gcc -qversion >&5 | |
i686-apple-darwin11-llvm-gcc-4.2: no input files | |
configure:4621: $? = 1 | |
configure:4641: checking whether the C compiler works | |
configure:4663: /usr/bin/llvm-gcc -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:4667: $? = 0 | |
configure:4716: result: yes | |
configure:4719: checking for C compiler default output file name | |
configure:4721: result: a.out | |
configure:4727: checking for suffix of executables | |
configure:4734: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:4738: $? = 0 | |
configure:4760: result: | |
configure:4782: checking whether we are cross compiling | |
configure:4790: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:4794: $? = 0 | |
configure:4801: ./conftest | |
configure:4805: $? = 0 | |
configure:4820: result: no | |
configure:4825: checking for suffix of object files | |
configure:4847: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:4851: $? = 0 | |
configure:4872: result: o | |
configure:4876: checking whether we are using the GNU C compiler | |
configure:4895: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:4895: $? = 0 | |
configure:4904: result: yes | |
configure:4913: checking whether /usr/bin/llvm-gcc accepts -g | |
configure:4933: /usr/bin/llvm-gcc -c -g -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:4933: $? = 0 | |
configure:4974: result: yes | |
configure:4991: checking for /usr/bin/llvm-gcc option to accept ISO C89 | |
configure:5055: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:5055: $? = 0 | |
configure:5068: result: none needed | |
configure:5090: checking dependency style of /usr/bin/llvm-gcc | |
configure:5200: result: none | |
configure:5216: checking for library containing strerror | |
configure:5247: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:5247: $? = 0 | |
configure:5264: result: none required | |
configure:5276: checking for flex | |
configure:5292: found /usr/bin/flex | |
configure:5303: result: flex | |
configure:5340: flex conftest.l | |
configure:5344: $? = 0 | |
configure:5346: checking lex output file root | |
configure:5360: result: lex.yy | |
configure:5365: checking lex library | |
configure:5379: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
Undefined symbols for architecture x86_64: | |
"_yywrap", referenced from: | |
_yylex in cczi8Dy8.o | |
_main in cczi8Dy8.o | |
ld: symbol(s) not found for architecture x86_64 | |
collect2: ld returned 1 exit status | |
configure:5379: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| /* end confdefs.h. */ | |
| | |
| #line 3 "lex.yy.c" | |
| | |
| #define YY_INT_ALIGNED short int | |
| | |
| /* A lexical scanner generated by flex */ | |
| | |
| #define FLEX_SCANNER | |
| #define YY_FLEX_MAJOR_VERSION 2 | |
| #define YY_FLEX_MINOR_VERSION 5 | |
| #define YY_FLEX_SUBMINOR_VERSION 35 | |
| #if YY_FLEX_SUBMINOR_VERSION > 0 | |
| #define FLEX_BETA | |
| #endif | |
| | |
| /* First, we deal with platform-specific or compiler-specific issues. */ | |
| | |
| /* begin standard C headers. */ | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <errno.h> | |
| #include <stdlib.h> | |
| | |
| /* end standard C headers. */ | |
| | |
| /* flex integer type definitions */ | |
| | |
| #ifndef FLEXINT_H | |
| #define FLEXINT_H | |
| | |
| /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */ | |
| | |
| #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L | |
| | |
| /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, | |
| * if you want the limit (max/min) macros for int types. | |
| */ | |
| #ifndef __STDC_LIMIT_MACROS | |
| #define __STDC_LIMIT_MACROS 1 | |
| #endif | |
| | |
| #include <inttypes.h> | |
| typedef int8_t flex_int8_t; | |
| typedef uint8_t flex_uint8_t; | |
| typedef int16_t flex_int16_t; | |
| typedef uint16_t flex_uint16_t; | |
| typedef int32_t flex_int32_t; | |
| typedef uint32_t flex_uint32_t; | |
| #else | |
| typedef signed char flex_int8_t; | |
| typedef short int flex_int16_t; | |
| typedef int flex_int32_t; | |
| typedef unsigned char flex_uint8_t; | |
| typedef unsigned short int flex_uint16_t; | |
| typedef unsigned int flex_uint32_t; | |
| #endif /* ! C99 */ | |
| | |
| /* Limits of integral types. */ | |
| #ifndef INT8_MIN | |
| #define INT8_MIN (-128) | |
| #endif | |
| #ifndef INT16_MIN | |
| #define INT16_MIN (-32767-1) | |
| #endif | |
| #ifndef INT32_MIN | |
| #define INT32_MIN (-2147483647-1) | |
| #endif | |
| #ifndef INT8_MAX | |
| #define INT8_MAX (127) | |
| #endif | |
| #ifndef INT16_MAX | |
| #define INT16_MAX (32767) | |
| #endif | |
| #ifndef INT32_MAX | |
| #define INT32_MAX (2147483647) | |
| #endif | |
| #ifndef UINT8_MAX | |
| #define UINT8_MAX (255U) | |
| #endif | |
| #ifndef UINT16_MAX | |
| #define UINT16_MAX (65535U) | |
| #endif | |
| #ifndef UINT32_MAX | |
| #define UINT32_MAX (4294967295U) | |
| #endif | |
| | |
| #endif /* ! FLEXINT_H */ | |
| | |
| #ifdef __cplusplus | |
| | |
| /* The "const" storage-class-modifier is valid. */ | |
| #define YY_USE_CONST | |
| | |
| #else /* ! __cplusplus */ | |
| | |
| /* C99 requires __STDC__ to be defined as 1. */ | |
| #if defined (__STDC__) | |
| | |
| #define YY_USE_CONST | |
| | |
| #endif /* defined (__STDC__) */ | |
| #endif /* ! __cplusplus */ | |
| | |
| #ifdef YY_USE_CONST | |
| #define yyconst const | |
| #else | |
| #define yyconst | |
| #endif | |
| | |
| /* Returned upon end-of-file. */ | |
| #define YY_NULL 0 | |
| | |
| /* Promotes a possibly negative, possibly signed char to an unsigned | |
| * integer for use as an array index. If the signed char is negative, | |
| * we want to instead treat it as an 8-bit unsigned char, hence the | |
| * double cast. | |
| */ | |
| #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) | |
| | |
| /* Enter a start condition. This macro really ought to take a parameter, | |
| * but we do it the disgusting crufty way forced on us by the ()-less | |
| * definition of BEGIN. | |
| */ | |
| #define BEGIN (yy_start) = 1 + 2 * | |
| | |
| /* Translate the current start state into a value that can be later handed | |
| * to BEGIN to return to the state. The YYSTATE alias is for lex | |
| * compatibility. | |
| */ | |
| #define YY_START (((yy_start) - 1) / 2) | |
| #define YYSTATE YY_START | |
| | |
| /* Action number for EOF rule of a given start state. */ | |
| #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) | |
| | |
| /* Special action meaning "start processing a new file". */ | |
| #define YY_NEW_FILE yyrestart(yyin ) | |
| | |
| #define YY_END_OF_BUFFER_CHAR 0 | |
| | |
| /* Size of default input buffer. */ | |
| #ifndef YY_BUF_SIZE | |
| #define YY_BUF_SIZE 16384 | |
| #endif | |
| | |
| /* The state buf must be large enough to hold one state per character in the main buffer. | |
| */ | |
| #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) | |
| | |
| #ifndef YY_TYPEDEF_YY_BUFFER_STATE | |
| #define YY_TYPEDEF_YY_BUFFER_STATE | |
| typedef struct yy_buffer_state *YY_BUFFER_STATE; | |
| #endif | |
| | |
| extern int yyleng; | |
| | |
| extern FILE *yyin, *yyout; | |
| | |
| #define EOB_ACT_CONTINUE_SCAN 0 | |
| #define EOB_ACT_END_OF_FILE 1 | |
| #define EOB_ACT_LAST_MATCH 2 | |
| | |
| #define YY_LESS_LINENO(n) | |
| | |
| /* Return all but the first "n" matched characters back to the input stream. */ | |
| #define yyless(n) \ | |
| do \ | |
| { \ | |
| /* Undo effects of setting up yytext. */ \ | |
| int yyless_macro_arg = (n); \ | |
| YY_LESS_LINENO(yyless_macro_arg);\ | |
| *yy_cp = (yy_hold_char); \ | |
| YY_RESTORE_YY_MORE_OFFSET \ | |
| (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ | |
| YY_DO_BEFORE_ACTION; /* set up yytext again */ \ | |
| } \ | |
| while ( 0 ) | |
| | |
| #define unput(c) yyunput( c, (yytext_ptr) ) | |
| | |
| #ifndef YY_TYPEDEF_YY_SIZE_T | |
| #define YY_TYPEDEF_YY_SIZE_T | |
| typedef size_t yy_size_t; | |
| #endif | |
| | |
| #ifndef YY_STRUCT_YY_BUFFER_STATE | |
| #define YY_STRUCT_YY_BUFFER_STATE | |
| struct yy_buffer_state | |
| { | |
| FILE *yy_input_file; | |
| | |
| char *yy_ch_buf; /* input buffer */ | |
| char *yy_buf_pos; /* current position in input buffer */ | |
| | |
| /* Size of input buffer in bytes, not including room for EOB | |
| * characters. | |
| */ | |
| yy_size_t yy_buf_size; | |
| | |
| /* Number of characters read into yy_ch_buf, not including EOB | |
| * characters. | |
| */ | |
| int yy_n_chars; | |
| | |
| /* Whether we "own" the buffer - i.e., we know we created it, | |
| * and can realloc() it to grow it, and should free() it to | |
| * delete it. | |
| */ | |
| int yy_is_our_buffer; | |
| | |
| /* Whether this is an "interactive" input source; if so, and | |
| * if we're using stdio for input, then we want to use getc() | |
| * instead of fread(), to make sure we stop fetching input after | |
| * each newline. | |
| */ | |
| int yy_is_interactive; | |
| | |
| /* Whether we're considered to be at the beginning of a line. | |
| * If so, '^' rules will be active on the next match, otherwise | |
| * not. | |
| */ | |
| int yy_at_bol; | |
| | |
| int yy_bs_lineno; /**< The line count. */ | |
| int yy_bs_column; /**< The column count. */ | |
| | |
| /* Whether to try to fill the input buffer when we reach the | |
| * end of it. | |
| */ | |
| int yy_fill_buffer; | |
| | |
| int yy_buffer_status; | |
| | |
| #define YY_BUFFER_NEW 0 | |
| #define YY_BUFFER_NORMAL 1 | |
| /* When an EOF's been seen but there's still some text to process | |
| * then we mark the buffer as YY_EOF_PENDING, to indicate that we | |
| * shouldn't try reading from the input source any more. We might | |
| * still have a bunch of tokens to match, though, because of | |
| * possible backing-up. | |
| * | |
| * When we actually see the EOF, we change the status to "new" | |
| * (via yyrestart()), so that the user can continue scanning by | |
| * just pointing yyin at a new input file. | |
| */ | |
| #define YY_BUFFER_EOF_PENDING 2 | |
| | |
| }; | |
| #endif /* !YY_STRUCT_YY_BUFFER_STATE */ | |
| | |
| /* Stack of input buffers. */ | |
| static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ | |
| static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ | |
| static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */ | |
| | |
| /* We provide macros for accessing buffer states in case in the | |
| * future we want to put the buffer states in a more general | |
| * "scanner state". | |
| * | |
| * Returns the top of the stack, or NULL. | |
| */ | |
| #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ | |
| ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ | |
| : NULL) | |
| | |
| /* Same as previous macro, but useful when we know that the buffer stack is not | |
| * NULL or when we need an lvalue. For internal use only. | |
| */ | |
| #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] | |
| | |
| /* yy_hold_char holds the character lost when yytext is formed. */ | |
| static char yy_hold_char; | |
| static int yy_n_chars; /* number of characters read into yy_ch_buf */ | |
| int yyleng; | |
| | |
| /* Points to current character in buffer. */ | |
| static char *yy_c_buf_p = (char *) 0; | |
| static int yy_init = 0; /* whether we need to initialize */ | |
| static int yy_start = 0; /* start state number */ | |
| | |
| /* Flag which is used to allow yywrap()'s to do buffer switches | |
| * instead of setting up a fresh yyin. A bit of a hack ... | |
| */ | |
| static int yy_did_buffer_switch_on_eof; | |
| | |
| void yyrestart (FILE *input_file ); | |
| void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); | |
| YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); | |
| void yy_delete_buffer (YY_BUFFER_STATE b ); | |
| void yy_flush_buffer (YY_BUFFER_STATE b ); | |
| void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); | |
| void yypop_buffer_state (void ); | |
| | |
| static void yyensure_buffer_stack (void ); | |
| static void yy_load_buffer_state (void ); | |
| static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); | |
| | |
| #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) | |
| | |
| YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); | |
| YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); | |
| YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len ); | |
| | |
| void *yyalloc (yy_size_t ); | |
| void *yyrealloc (void *,yy_size_t ); | |
| void yyfree (void * ); | |
| | |
| #define yy_new_buffer yy_create_buffer | |
| | |
| #define yy_set_interactive(is_interactive) \ | |
| { \ | |
| if ( ! YY_CURRENT_BUFFER ){ \ | |
| yyensure_buffer_stack (); \ | |
| YY_CURRENT_BUFFER_LVALUE = \ | |
| yy_create_buffer(yyin,YY_BUF_SIZE ); \ | |
| } \ | |
| YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ | |
| } | |
| | |
| #define yy_set_bol(at_bol) \ | |
| { \ | |
| if ( ! YY_CURRENT_BUFFER ){\ | |
| yyensure_buffer_stack (); \ | |
| YY_CURRENT_BUFFER_LVALUE = \ | |
| yy_create_buffer(yyin,YY_BUF_SIZE ); \ | |
| } \ | |
| YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ | |
| } | |
| | |
| #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) | |
| | |
| /* Begin user sect3 */ | |
| | |
| typedef unsigned char YY_CHAR; | |
| | |
| FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; | |
| | |
| typedef int yy_state_type; | |
| | |
| extern int yylineno; | |
| | |
| int yylineno = 1; | |
| | |
| extern char *yytext; | |
| #define yytext_ptr yytext | |
| | |
| static yy_state_type yy_get_previous_state (void ); | |
| static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); | |
| static int yy_get_next_buffer (void ); | |
| static void yy_fatal_error (yyconst char msg[] ); | |
| | |
| /* Done after the current pattern has been matched and before the | |
| * corresponding action - sets up yytext. | |
| */ | |
| #define YY_DO_BEFORE_ACTION \ | |
| (yytext_ptr) = yy_bp; \ | |
| (yytext_ptr) -= (yy_more_len); \ | |
| yyleng = (size_t) (yy_cp - (yytext_ptr)); \ | |
| (yy_hold_char) = *yy_cp; \ | |
| *yy_cp = '\0'; \ | |
| (yy_c_buf_p) = yy_cp; | |
| | |
| #define YY_NUM_RULES 8 | |
| #define YY_END_OF_BUFFER 9 | |
| /* This struct is not used in this scanner, | |
| but its presence is necessary. */ | |
| struct yy_trans_info | |
| { | |
| flex_int32_t yy_verify; | |
| flex_int32_t yy_nxt; | |
| }; | |
| static yyconst flex_int16_t yy_acclist[23] = | |
| { 0, | |
| 9, 7, 8, 8, 1, 7, 8, 2, 7, 8, | |
| 3, 7, 8, 4, 7, 8, 5, 7, 8, 6, | |
| 7, 8 | |
| } ; | |
| | |
| static yyconst flex_int16_t yy_accept[14] = | |
| { 0, | |
| 1, 1, 1, 2, 4, 5, 8, 11, 14, 17, | |
| 20, 23, 23 | |
| } ; | |
| | |
| static yyconst flex_int32_t yy_ec[256] = | |
| { 0, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 3, 4, 5, 6, | |
| | |
| 7, 8, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
| 1, 1, 1, 1, 1 | |
| } ; | |
| | |
| static yyconst flex_int32_t yy_meta[9] = | |
| { 0, | |
| 1, 1, 1, 1, 1, 1, 1, 1 | |
| } ; | |
| | |
| static yyconst flex_int16_t yy_base[13] = | |
| { 0, | |
| 0, 0, 9, 10, 10, 10, 10, 10, 10, 10, | |
| 10, 10 | |
| } ; | |
| | |
| static yyconst flex_int16_t yy_def[13] = | |
| { 0, | |
| 12, 1, 12, 12, 12, 12, 12, 12, 12, 12, | |
| 12, 0 | |
| } ; | |
| | |
| static yyconst flex_int16_t yy_nxt[19] = | |
| { 0, | |
| 4, 5, 6, 7, 8, 9, 10, 11, 12, 3, | |
| 12, 12, 12, 12, 12, 12, 12, 12 | |
| } ; | |
| | |
| static yyconst flex_int16_t yy_chk[19] = | |
| { 0, | |
| 1, 1, 1, 1, 1, 1, 1, 1, 3, 12, | |
| 12, 12, 12, 12, 12, 12, 12, 12 | |
| } ; | |
| | |
| extern int yy_flex_debug; | |
| int yy_flex_debug = 0; | |
| | |
| static yy_state_type *yy_state_buf=0, *yy_state_ptr=0; | |
| static char *yy_full_match; | |
| static int yy_lp; | |
| #define REJECT \ | |
| { \ | |
| *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ \ | |
| yy_cp = (yy_full_match); /* restore poss. backed-over text */ \ | |
| ++(yy_lp); \ | |
| goto find_rule; \ | |
| } | |
| | |
| static int yy_more_flag = 0; | |
| static int yy_more_len = 0; | |
| #define yymore() ((yy_more_flag) = 1) | |
| #define YY_MORE_ADJ (yy_more_len) | |
| #define YY_RESTORE_YY_MORE_OFFSET | |
| char *yytext; | |
| #line 1 "conftest.l" | |
| #line 468 "lex.yy.c" | |
| | |
| #define INITIAL 0 | |
| | |
| #ifndef YY_NO_UNISTD_H | |
| /* Special case for "unistd.h", since it is non-ANSI. We include it way | |
| * down here because we want the user's section 1 to have been scanned first. | |
| * The user has a chance to override it with an option. | |
| */ | |
| #include <unistd.h> | |
| #endif | |
| | |
| #ifndef YY_EXTRA_TYPE | |
| #define YY_EXTRA_TYPE void * | |
| #endif | |
| | |
| static int yy_init_globals (void ); | |
| | |
| /* Accessor methods to globals. | |
| These are made visible to non-reentrant scanners for convenience. */ | |
| | |
| int yylex_destroy (void ); | |
| | |
| int yyget_debug (void ); | |
| | |
| void yyset_debug (int debug_flag ); | |
| | |
| YY_EXTRA_TYPE yyget_extra (void ); | |
| | |
| void yyset_extra (YY_EXTRA_TYPE user_defined ); | |
| | |
| FILE *yyget_in (void ); | |
| | |
| void yyset_in (FILE * in_str ); | |
| | |
| FILE *yyget_out (void ); | |
| | |
| void yyset_out (FILE * out_str ); | |
| | |
| int yyget_leng (void ); | |
| | |
| char *yyget_text (void ); | |
| | |
| int yyget_lineno (void ); | |
| | |
| void yyset_lineno (int line_number ); | |
| | |
| /* Macros after this point can all be overridden by user definitions in | |
| * section 1. | |
| */ | |
| | |
| #ifndef YY_SKIP_YYWRAP | |
| #ifdef __cplusplus | |
| extern "C" int yywrap (void ); | |
| #else | |
| extern int yywrap (void ); | |
| #endif | |
| #endif | |
| | |
| static void yyunput (int c,char *buf_ptr ); | |
| | |
| #ifndef yytext_ptr | |
| static void yy_flex_strncpy (char *,yyconst char *,int ); | |
| #endif | |
| | |
| #ifdef YY_NEED_STRLEN | |
| static int yy_flex_strlen (yyconst char * ); | |
| #endif | |
| | |
| #ifndef YY_NO_INPUT | |
| | |
| #ifdef __cplusplus | |
| static int yyinput (void ); | |
| #else | |
| static int input (void ); | |
| #endif | |
| | |
| #endif | |
| | |
| /* Amount of stuff to slurp up with each read. */ | |
| #ifndef YY_READ_BUF_SIZE | |
| #define YY_READ_BUF_SIZE 8192 | |
| #endif | |
| | |
| /* Copy whatever the last rule matched to the standard output. */ | |
| #ifndef ECHO | |
| /* This used to be an fputs(), but since the string might contain NUL's, | |
| * we now use fwrite(). | |
| */ | |
| #define ECHO fwrite( yytext, yyleng, 1, yyout ) | |
| #endif | |
| | |
| /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, | |
| * is returned in "result". | |
| */ | |
| #ifndef YY_INPUT | |
| #define YY_INPUT(buf,result,max_size) \ | |
| if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ | |
| { \ | |
| int c = '*'; \ | |
| yy_size_t n; \ | |
| for ( n = 0; n < max_size && \ | |
| (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ | |
| buf[n] = (char) c; \ | |
| if ( c == '\n' ) \ | |
| buf[n++] = (char) c; \ | |
| if ( c == EOF && ferror( yyin ) ) \ | |
| YY_FATAL_ERROR( "input in flex scanner failed" ); \ | |
| result = n; \ | |
| } \ | |
| else \ | |
| { \ | |
| errno=0; \ | |
| while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ | |
| { \ | |
| if( errno != EINTR) \ | |
| { \ | |
| YY_FATAL_ERROR( "input in flex scanner failed" ); \ | |
| break; \ | |
| } \ | |
| errno=0; \ | |
| clearerr(yyin); \ | |
| } \ | |
| }\ | |
| \ | |
| | |
| #endif | |
| | |
| /* No semi-colon after return; correct usage is to write "yyterminate();" - | |
| * we don't want an extra ';' after the "return" because that will cause | |
| * some compilers to complain about unreachable statements. | |
| */ | |
| #ifndef yyterminate | |
| #define yyterminate() return YY_NULL | |
| #endif | |
| | |
| /* Number of entries by which start-condition stack grows. */ | |
| #ifndef YY_START_STACK_INCR | |
| #define YY_START_STACK_INCR 25 | |
| #endif | |
| | |
| /* Report a fatal error. */ | |
| #ifndef YY_FATAL_ERROR | |
| #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) | |
| #endif | |
| | |
| /* end tables serialization structures and prototypes */ | |
| | |
| /* Default declaration of generated scanner - a define so the user can | |
| * easily add parameters. | |
| */ | |
| #ifndef YY_DECL | |
| #define YY_DECL_IS_OURS 1 | |
| | |
| extern int yylex (void); | |
| | |
| #define YY_DECL int yylex (void) | |
| #endif /* !YY_DECL */ | |
| | |
| /* Code executed at the beginning of each rule, after yytext and yyleng | |
| * have been set up. | |
| */ | |
| #ifndef YY_USER_ACTION | |
| #define YY_USER_ACTION | |
| #endif | |
| | |
| /* Code executed at the end of each rule. */ | |
| #ifndef YY_BREAK | |
| #define YY_BREAK break; | |
| #endif | |
| | |
| #define YY_RULE_SETUP \ | |
| YY_USER_ACTION | |
| | |
| /** The main scanner function which does all the work. | |
| */ | |
| YY_DECL | |
| { | |
| register yy_state_type yy_current_state; | |
| register char *yy_cp, *yy_bp; | |
| register int yy_act; | |
| | |
| #line 1 "conftest.l" | |
| | |
| #line 652 "lex.yy.c" | |
| | |
| if ( !(yy_init) ) | |
| { | |
| (yy_init) = 1; | |
| | |
| #ifdef YY_USER_INIT | |
| YY_USER_INIT; | |
| #endif | |
| | |
| /* Create the reject buffer large enough to save one state per allowed character. */ | |
| if ( ! (yy_state_buf) ) | |
| (yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE ); | |
| if ( ! (yy_state_buf) ) | |
| YY_FATAL_ERROR( "out of dynamic memory in yylex()" ); | |
| | |
| if ( ! (yy_start) ) | |
| (yy_start) = 1; /* first start state */ | |
| | |
| if ( ! yyin ) | |
| yyin = stdin; | |
| | |
| if ( ! yyout ) | |
| yyout = stdout; | |
| | |
| if ( ! YY_CURRENT_BUFFER ) { | |
| yyensure_buffer_stack (); | |
| YY_CURRENT_BUFFER_LVALUE = | |
| yy_create_buffer(yyin,YY_BUF_SIZE ); | |
| } | |
| | |
| yy_load_buffer_state( ); | |
| } | |
| | |
| while ( 1 ) /* loops until end-of-file is reached */ | |
| { | |
| (yy_more_len) = 0; | |
| if ( (yy_more_flag) ) | |
| { | |
| (yy_more_len) = (yy_c_buf_p) - (yytext_ptr); | |
| (yy_more_flag) = 0; | |
| } | |
| yy_cp = (yy_c_buf_p); | |
| | |
| /* Support of yytext. */ | |
| *yy_cp = (yy_hold_char); | |
| | |
| /* yy_bp points to the position in yy_ch_buf of the start of | |
| * the current run. | |
| */ | |
| yy_bp = yy_cp; | |
| | |
| yy_current_state = (yy_start); | |
| | |
| (yy_state_ptr) = (yy_state_buf); | |
| *(yy_state_ptr)++ = yy_current_state; | |
| | |
| yy_match: | |
| do | |
| { | |
| register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; | |
| while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | |
| { | |
| yy_current_state = (int) yy_def[yy_current_state]; | |
| if ( yy_current_state >= 13 ) | |
| yy_c = yy_meta[(unsigned int) yy_c]; | |
| } | |
| yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; | |
| *(yy_state_ptr)++ = yy_current_state; | |
| ++yy_cp; | |
| } | |
| while ( yy_base[yy_current_state] != 10 ); | |
| | |
| yy_find_action: | |
| yy_current_state = *--(yy_state_ptr); | |
| (yy_lp) = yy_accept[yy_current_state]; | |
| goto find_rule; /* Shut up GCC warning -Wall */ | |
| find_rule: /* we branch to this label when backing up */ | |
| for ( ; ; ) /* until we find what rule we matched */ | |
| { | |
| if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] ) | |
| { | |
| yy_act = yy_acclist[(yy_lp)]; | |
| { | |
| (yy_full_match) = yy_cp; | |
| break; | |
| } | |
| } | |
| --yy_cp; | |
| yy_current_state = *--(yy_state_ptr); | |
| (yy_lp) = yy_accept[yy_current_state]; | |
| } | |
| | |
| YY_DO_BEFORE_ACTION; | |
| | |
| do_action: /* This label is used only to access EOF actions. */ | |
| | |
| switch ( yy_act ) | |
| { /* beginning of action switch */ | |
| case 1: | |
| YY_RULE_SETUP | |
| #line 2 "conftest.l" | |
| { ECHO; } | |
| YY_BREAK | |
| case 2: | |
| YY_RULE_SETUP | |
| #line 3 "conftest.l" | |
| { REJECT; } | |
| YY_BREAK | |
| case 3: | |
| YY_RULE_SETUP | |
| #line 4 "conftest.l" | |
| { yymore (); } | |
| YY_BREAK | |
| case 4: | |
| YY_RULE_SETUP | |
| #line 5 "conftest.l" | |
| { yyless (1); } | |
| YY_BREAK | |
| case 5: | |
| YY_RULE_SETUP | |
| #line 6 "conftest.l" | |
| { yyless (input () != 0); } | |
| YY_BREAK | |
| case 6: | |
| YY_RULE_SETUP | |
| #line 7 "conftest.l" | |
| { unput (yytext[0]); } | |
| YY_BREAK | |
| case 7: | |
| YY_RULE_SETUP | |
| #line 8 "conftest.l" | |
| { BEGIN INITIAL; } | |
| YY_BREAK | |
| case 8: | |
| YY_RULE_SETUP | |
| #line 9 "conftest.l" | |
| ECHO; | |
| YY_BREAK | |
| #line 791 "lex.yy.c" | |
| case YY_STATE_EOF(INITIAL): | |
| yyterminate(); | |
| | |
| case YY_END_OF_BUFFER: | |
| { | |
| /* Amount of text matched not including the EOB char. */ | |
| int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; | |
| | |
| /* Undo the effects of YY_DO_BEFORE_ACTION. */ | |
| *yy_cp = (yy_hold_char); | |
| YY_RESTORE_YY_MORE_OFFSET | |
| | |
| if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) | |
| { | |
| /* We're scanning a new file or input source. It's | |
| * possible that this happened because the user | |
| * just pointed yyin at a new source and called | |
| * yylex(). If so, then we have to assure | |
| * consistency between YY_CURRENT_BUFFER and our | |
| * globals. Here is the right place to do so, because | |
| * this is the first action (other than possibly a | |
| * back-up) that will match for the new input source. | |
| */ | |
| (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; | |
| YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; | |
| YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; | |
| } | |
| | |
| /* Note that here we test for yy_c_buf_p "<=" to the position | |
| * of the first EOB in the buffer, since yy_c_buf_p will | |
| * already have been incremented past the NUL character | |
| * (since all states make transitions on EOB to the | |
| * end-of-buffer state). Contrast this with the test | |
| * in input(). | |
| */ | |
| if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) | |
| { /* This was really a NUL. */ | |
| yy_state_type yy_next_state; | |
| | |
| (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; | |
| | |
| yy_current_state = yy_get_previous_state( ); | |
| | |
| /* Okay, we're now positioned to make the NUL | |
| * transition. We couldn't have | |
| * yy_get_previous_state() go ahead and do it | |
| * for us because it doesn't know how to deal | |
| * with the possibility of jamming (and we don't | |
| * want to build jamming into it because then it | |
| * will run more slowly). | |
| */ | |
| | |
| yy_next_state = yy_try_NUL_trans( yy_current_state ); | |
| | |
| yy_bp = (yytext_ptr) + YY_MORE_ADJ; | |
| | |
| if ( yy_next_state ) | |
| { | |
| /* Consume the NUL. */ | |
| yy_cp = ++(yy_c_buf_p); | |
| yy_current_state = yy_next_state; | |
| goto yy_match; | |
| } | |
| | |
| else | |
| { | |
| yy_cp = (yy_c_buf_p); | |
| goto yy_find_action; | |
| } | |
| } | |
| | |
| else switch ( yy_get_next_buffer( ) ) | |
| { | |
| case EOB_ACT_END_OF_FILE: | |
| { | |
| (yy_did_buffer_switch_on_eof) = 0; | |
| | |
| if ( yywrap( ) ) | |
| { | |
| /* Note: because we've taken care in | |
| * yy_get_next_buffer() to have set up | |
| * yytext, we can now set up | |
| * yy_c_buf_p so that if some total | |
| * hoser (like flex itself) wants to | |
| * call the scanner after we return the | |
| * YY_NULL, it'll still work - another | |
| * YY_NULL will get returned. | |
| */ | |
| (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; | |
| | |
| yy_act = YY_STATE_EOF(YY_START); | |
| goto do_action; | |
| } | |
| | |
| else | |
| { | |
| if ( ! (yy_did_buffer_switch_on_eof) ) | |
| YY_NEW_FILE; | |
| } | |
| break; | |
| } | |
| | |
| case EOB_ACT_CONTINUE_SCAN: | |
| (yy_c_buf_p) = | |
| (yytext_ptr) + yy_amount_of_matched_text; | |
| | |
| yy_current_state = yy_get_previous_state( ); | |
| | |
| yy_cp = (yy_c_buf_p); | |
| yy_bp = (yytext_ptr) + YY_MORE_ADJ; | |
| goto yy_match; | |
| | |
| case EOB_ACT_LAST_MATCH: | |
| (yy_c_buf_p) = | |
| &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; | |
| | |
| yy_current_state = yy_get_previous_state( ); | |
| | |
| yy_cp = (yy_c_buf_p); | |
| yy_bp = (yytext_ptr) + YY_MORE_ADJ; | |
| goto yy_find_action; | |
| } | |
| break; | |
| } | |
| | |
| default: | |
| YY_FATAL_ERROR( | |
| "fatal flex scanner internal error--no action found" ); | |
| } /* end of action switch */ | |
| } /* end of scanning one token */ | |
| } /* end of yylex */ | |
| | |
| /* yy_get_next_buffer - try to read in a new buffer | |
| * | |
| * Returns a code representing an action: | |
| * EOB_ACT_LAST_MATCH - | |
| * EOB_ACT_CONTINUE_SCAN - continue scanning from current position | |
| * EOB_ACT_END_OF_FILE - end of file | |
| */ | |
| static int yy_get_next_buffer (void) | |
| { | |
| register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; | |
| register char *source = (yytext_ptr); | |
| register int number_to_move, i; | |
| int ret_val; | |
| | |
| if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) | |
| YY_FATAL_ERROR( | |
| "fatal flex scanner internal error--end of buffer missed" ); | |
| | |
| if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) | |
| { /* Don't try to fill the buffer, so this is an EOF. */ | |
| if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) | |
| { | |
| /* We matched a single character, the EOB, so | |
| * treat this as a final EOF. | |
| */ | |
| return EOB_ACT_END_OF_FILE; | |
| } | |
| | |
| else | |
| { | |
| /* We matched some text prior to the EOB, first | |
| * process it. | |
| */ | |
| return EOB_ACT_LAST_MATCH; | |
| } | |
| } | |
| | |
| /* Try to read more data. */ | |
| | |
| /* First move last chars to start of buffer. */ | |
| number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1; | |
| | |
| for ( i = 0; i < number_to_move; ++i ) | |
| *(dest++) = *(source++); | |
| | |
| if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) | |
| /* don't do the read, it's not guaranteed to return an EOF, | |
| * just force an EOF | |
| */ | |
| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; | |
| | |
| else | |
| { | |
| int num_to_read = | |
| YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; | |
| | |
| while ( num_to_read <= 0 ) | |
| { /* Not enough room in the buffer - grow it. */ | |
| | |
| YY_FATAL_ERROR( | |
| "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); | |
| | |
| } | |
| | |
| if ( num_to_read > YY_READ_BUF_SIZE ) | |
| num_to_read = YY_READ_BUF_SIZE; | |
| | |
| /* Read in more data. */ | |
| YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), | |
| (yy_n_chars), (size_t) num_to_read ); | |
| | |
| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); | |
| } | |
| | |
| if ( (yy_n_chars) == 0 ) | |
| { | |
| if ( number_to_move == YY_MORE_ADJ ) | |
| { | |
| ret_val = EOB_ACT_END_OF_FILE; | |
| yyrestart(yyin ); | |
| } | |
| | |
| else | |
| { | |
| ret_val = EOB_ACT_LAST_MATCH; | |
| YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = | |
| YY_BUFFER_EOF_PENDING; | |
| } | |
| } | |
| | |
| else | |
| ret_val = EOB_ACT_CONTINUE_SCAN; | |
| | |
| if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { | |
| /* Extend the array by 50%, plus the number we really need. */ | |
| yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); | |
| YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); | |
| if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) | |
| YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); | |
| } | |
| | |
| (yy_n_chars) += number_to_move; | |
| YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; | |
| YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; | |
| | |
| (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; | |
| | |
| return ret_val; | |
| } | |
| | |
| /* yy_get_previous_state - get the state just before the EOB char was reached */ | |
| | |
| static yy_state_type yy_get_previous_state (void) | |
| { | |
| register yy_state_type yy_current_state; | |
| register char *yy_cp; | |
| | |
| yy_current_state = (yy_start); | |
| | |
| (yy_state_ptr) = (yy_state_buf); | |
| *(yy_state_ptr)++ = yy_current_state; | |
| | |
| for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) | |
| { | |
| register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); | |
| while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | |
| { | |
| yy_current_state = (int) yy_def[yy_current_state]; | |
| if ( yy_current_state >= 13 ) | |
| yy_c = yy_meta[(unsigned int) yy_c]; | |
| } | |
| yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; | |
| *(yy_state_ptr)++ = yy_current_state; | |
| } | |
| | |
| return yy_current_state; | |
| } | |
| | |
| /* yy_try_NUL_trans - try to make a transition on the NUL character | |
| * | |
| * synopsis | |
| * next_state = yy_try_NUL_trans( current_state ); | |
| */ | |
| static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) | |
| { | |
| register int yy_is_jam; | |
| | |
| register YY_CHAR yy_c = 1; | |
| while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | |
| { | |
| yy_current_state = (int) yy_def[yy_current_state]; | |
| if ( yy_current_state >= 13 ) | |
| yy_c = yy_meta[(unsigned int) yy_c]; | |
| } | |
| yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; | |
| yy_is_jam = (yy_current_state == 12); | |
| if ( ! yy_is_jam ) | |
| *(yy_state_ptr)++ = yy_current_state; | |
| | |
| return yy_is_jam ? 0 : yy_current_state; | |
| } | |
| | |
| static void yyunput (int c, register char * yy_bp ) | |
| { | |
| register char *yy_cp; | |
| | |
| yy_cp = (yy_c_buf_p); | |
| | |
| /* undo effects of setting up yytext */ | |
| *yy_cp = (yy_hold_char); | |
| | |
| if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) | |
| { /* need to shift things up to make room */ | |
| /* +2 for EOB chars. */ | |
| register int number_to_move = (yy_n_chars) + 2; | |
| register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ | |
| YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; | |
| register char *source = | |
| &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]; | |
| | |
| while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) | |
| *--dest = *--source; | |
| | |
| yy_cp += (int) (dest - source); | |
| yy_bp += (int) (dest - source); | |
| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = | |
| (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size; | |
| | |
| if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) | |
| YY_FATAL_ERROR( "flex scanner push-back overflow" ); | |
| } | |
| | |
| *--yy_cp = (char) c; | |
| | |
| (yytext_ptr) = yy_bp; | |
| (yy_hold_char) = *yy_cp; | |
| (yy_c_buf_p) = yy_cp; | |
| } | |
| | |
| #ifndef YY_NO_INPUT | |
| #ifdef __cplusplus | |
| static int yyinput (void) | |
| #else | |
| static int input (void) | |
| #endif | |
| | |
| { | |
| int c; | |
| | |
| *(yy_c_buf_p) = (yy_hold_char); | |
| | |
| if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) | |
| { | |
| /* yy_c_buf_p now points to the character we want to return. | |
| * If this occurs *before* the EOB characters, then it's a | |
| * valid NUL; if not, then we've hit the end of the buffer. | |
| */ | |
| if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) | |
| /* This was really a NUL. */ | |
| *(yy_c_buf_p) = '\0'; | |
| | |
| else | |
| { /* need more input */ | |
| int offset = (yy_c_buf_p) - (yytext_ptr); | |
| ++(yy_c_buf_p); | |
| | |
| switch ( yy_get_next_buffer( ) ) | |
| { | |
| case EOB_ACT_LAST_MATCH: | |
| /* This happens because yy_g_n_b() | |
| * sees that we've accumulated a | |
| * token and flags that we need to | |
| * try matching the token before | |
| * proceeding. But for input(), | |
| * there's no matching to consider. | |
| * So convert the EOB_ACT_LAST_MATCH | |
| * to EOB_ACT_END_OF_FILE. | |
| */ | |
| | |
| /* Reset buffer status. */ | |
| yyrestart(yyin ); | |
| | |
| /*FALLTHROUGH*/ | |
| | |
| case EOB_ACT_END_OF_FILE: | |
| { | |
| if ( yywrap( ) ) | |
| return EOF; | |
| | |
| if ( ! (yy_did_buffer_switch_on_eof) ) | |
| YY_NEW_FILE; | |
| #ifdef __cplusplus | |
| return yyinput(); | |
| #else | |
| return input(); | |
| #endif | |
| } | |
| | |
| case EOB_ACT_CONTINUE_SCAN: | |
| (yy_c_buf_p) = (yytext_ptr) + offset; | |
| break; | |
| } | |
| } | |
| } | |
| | |
| c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ | |
| *(yy_c_buf_p) = '\0'; /* preserve yytext */ | |
| (yy_hold_char) = *++(yy_c_buf_p); | |
| | |
| return c; | |
| } | |
| #endif /* ifndef YY_NO_INPUT */ | |
| | |
| /** Immediately switch to a different input stream. | |
| * @param input_file A readable stream. | |
| * | |
| * @note This function does not reset the start condition to @c INITIAL . | |
| */ | |
| void yyrestart (FILE * input_file ) | |
| { | |
| | |
| if ( ! YY_CURRENT_BUFFER ){ | |
| yyensure_buffer_stack (); | |
| YY_CURRENT_BUFFER_LVALUE = | |
| yy_create_buffer(yyin,YY_BUF_SIZE ); | |
| } | |
| | |
| yy_init_buffer(YY_CURRENT_BUFFER,input_file ); | |
| yy_load_buffer_state( ); | |
| } | |
| | |
| /** Switch to a different input buffer. | |
| * @param new_buffer The new input buffer. | |
| * | |
| */ | |
| void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) | |
| { | |
| | |
| /* TODO. We should be able to replace this entire function body | |
| * with | |
| * yypop_buffer_state(); | |
| * yypush_buffer_state(new_buffer); | |
| */ | |
| yyensure_buffer_stack (); | |
| if ( YY_CURRENT_BUFFER == new_buffer ) | |
| return; | |
| | |
| if ( YY_CURRENT_BUFFER ) | |
| { | |
| /* Flush out information for old buffer. */ | |
| *(yy_c_buf_p) = (yy_hold_char); | |
| YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); | |
| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); | |
| } | |
| | |
| YY_CURRENT_BUFFER_LVALUE = new_buffer; | |
| yy_load_buffer_state( ); | |
| | |
| /* We don't actually know whether we did this switch during | |
| * EOF (yywrap()) processing, but the only time this flag | |
| * is looked at is after yywrap() is called, so it's safe | |
| * to go ahead and always set it. | |
| */ | |
| (yy_did_buffer_switch_on_eof) = 1; | |
| } | |
| | |
| static void yy_load_buffer_state (void) | |
| { | |
| (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; | |
| (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; | |
| yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; | |
| (yy_hold_char) = *(yy_c_buf_p); | |
| } | |
| | |
| /** Allocate and initialize an input buffer state. | |
| * @param file A readable stream. | |
| * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. | |
| * | |
| * @return the allocated buffer state. | |
| */ | |
| YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) | |
| { | |
| YY_BUFFER_STATE b; | |
| | |
| b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); | |
| if ( ! b ) | |
| YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); | |
| | |
| b->yy_buf_size = size; | |
| | |
| /* yy_ch_buf has to be 2 characters longer than the size given because | |
| * we need to put in 2 end-of-buffer characters. | |
| */ | |
| b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); | |
| if ( ! b->yy_ch_buf ) | |
| YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); | |
| | |
| b->yy_is_our_buffer = 1; | |
| | |
| yy_init_buffer(b,file ); | |
| | |
| return b; | |
| } | |
| | |
| /** Destroy the buffer. | |
| * @param b a buffer created with yy_create_buffer() | |
| * | |
| */ | |
| void yy_delete_buffer (YY_BUFFER_STATE b ) | |
| { | |
| | |
| if ( ! b ) | |
| return; | |
| | |
| if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ | |
| YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; | |
| | |
| if ( b->yy_is_our_buffer ) | |
| yyfree((void *) b->yy_ch_buf ); | |
| | |
| yyfree((void *) b ); | |
| } | |
| | |
| #ifndef __cplusplus | |
| extern int isatty (int ); | |
| #endif /* __cplusplus */ | |
| | |
| /* Initializes or reinitializes a buffer. | |
| * This function is sometimes called more than once on the same buffer, | |
| * such as during a yyrestart() or at EOF. | |
| */ | |
| static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) | |
| | |
| { | |
| int oerrno = errno; | |
| | |
| yy_flush_buffer(b ); | |
| | |
| b->yy_input_file = file; | |
| b->yy_fill_buffer = 1; | |
| | |
| /* If b is the current buffer, then yy_init_buffer was _probably_ | |
| * called from yyrestart() or through yy_get_next_buffer. | |
| * In that case, we don't want to reset the lineno or column. | |
| */ | |
| if (b != YY_CURRENT_BUFFER){ | |
| b->yy_bs_lineno = 1; | |
| b->yy_bs_column = 0; | |
| } | |
| | |
| b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; | |
| | |
| errno = oerrno; | |
| } | |
| | |
| /** Discard all buffered characters. On the next scan, YY_INPUT will be called. | |
| * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. | |
| * | |
| */ | |
| void yy_flush_buffer (YY_BUFFER_STATE b ) | |
| { | |
| if ( ! b ) | |
| return; | |
| | |
| b->yy_n_chars = 0; | |
| | |
| /* We always need two end-of-buffer characters. The first causes | |
| * a transition to the end-of-buffer state. The second causes | |
| * a jam in that state. | |
| */ | |
| b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; | |
| b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; | |
| | |
| b->yy_buf_pos = &b->yy_ch_buf[0]; | |
| | |
| b->yy_at_bol = 1; | |
| b->yy_buffer_status = YY_BUFFER_NEW; | |
| | |
| if ( b == YY_CURRENT_BUFFER ) | |
| yy_load_buffer_state( ); | |
| } | |
| | |
| /** Pushes the new state onto the stack. The new state becomes | |
| * the current state. This function will allocate the stack | |
| * if necessary. | |
| * @param new_buffer The new state. | |
| * | |
| */ | |
| void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) | |
| { | |
| if (new_buffer == NULL) | |
| return; | |
| | |
| yyensure_buffer_stack(); | |
| | |
| /* This block is copied from yy_switch_to_buffer. */ | |
| if ( YY_CURRENT_BUFFER ) | |
| { | |
| /* Flush out information for old buffer. */ | |
| *(yy_c_buf_p) = (yy_hold_char); | |
| YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); | |
| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); | |
| } | |
| | |
| /* Only push if top exists. Otherwise, replace top. */ | |
| if (YY_CURRENT_BUFFER) | |
| (yy_buffer_stack_top)++; | |
| YY_CURRENT_BUFFER_LVALUE = new_buffer; | |
| | |
| /* copied from yy_switch_to_buffer. */ | |
| yy_load_buffer_state( ); | |
| (yy_did_buffer_switch_on_eof) = 1; | |
| } | |
| | |
| /** Removes and deletes the top of the stack, if present. | |
| * The next element becomes the new top. | |
| * | |
| */ | |
| void yypop_buffer_state (void) | |
| { | |
| if (!YY_CURRENT_BUFFER) | |
| return; | |
| | |
| yy_delete_buffer(YY_CURRENT_BUFFER ); | |
| YY_CURRENT_BUFFER_LVALUE = NULL; | |
| if ((yy_buffer_stack_top) > 0) | |
| --(yy_buffer_stack_top); | |
| | |
| if (YY_CURRENT_BUFFER) { | |
| yy_load_buffer_state( ); | |
| (yy_did_buffer_switch_on_eof) = 1; | |
| } | |
| } | |
| | |
| /* Allocates the stack if it does not exist. | |
| * Guarantees space for at least one push. | |
| */ | |
| static void yyensure_buffer_stack (void) | |
| { | |
| int num_to_alloc; | |
| | |
| if (!(yy_buffer_stack)) { | |
| | |
| /* First allocation is just for 2 elements, since we don't know if this | |
| * scanner will even need a stack. We use 2 instead of 1 to avoid an | |
| * immediate realloc on the next call. | |
| */ | |
| num_to_alloc = 1; | |
| (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc | |
| (num_to_alloc * sizeof(struct yy_buffer_state*) | |
| ); | |
| if ( ! (yy_buffer_stack) ) | |
| YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); | |
| | |
| memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); | |
| | |
| (yy_buffer_stack_max) = num_to_alloc; | |
| (yy_buffer_stack_top) = 0; | |
| return; | |
| } | |
| | |
| if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ | |
| | |
| /* Increase the buffer to prepare for a possible push. */ | |
| int grow_size = 8 /* arbitrary grow size */; | |
| | |
| num_to_alloc = (yy_buffer_stack_max) + grow_size; | |
| (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc | |
| ((yy_buffer_stack), | |
| num_to_alloc * sizeof(struct yy_buffer_state*) | |
| ); | |
| if ( ! (yy_buffer_stack) ) | |
| YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); | |
| | |
| /* zero only the new slots.*/ | |
| memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); | |
| (yy_buffer_stack_max) = num_to_alloc; | |
| } | |
| } | |
| | |
| /** Setup the input buffer state to scan directly from a user-specified character buffer. | |
| * @param base the character buffer | |
| * @param size the size in bytes of the character buffer | |
| * | |
| * @return the newly allocated buffer state object. | |
| */ | |
| YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) | |
| { | |
| YY_BUFFER_STATE b; | |
| | |
| if ( size < 2 || | |
| base[size-2] != YY_END_OF_BUFFER_CHAR || | |
| base[size-1] != YY_END_OF_BUFFER_CHAR ) | |
| /* They forgot to leave room for the EOB's. */ | |
| return 0; | |
| | |
| b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); | |
| if ( ! b ) | |
| YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); | |
| | |
| b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ | |
| b->yy_buf_pos = b->yy_ch_buf = base; | |
| b->yy_is_our_buffer = 0; | |
| b->yy_input_file = 0; | |
| b->yy_n_chars = b->yy_buf_size; | |
| b->yy_is_interactive = 0; | |
| b->yy_at_bol = 1; | |
| b->yy_fill_buffer = 0; | |
| b->yy_buffer_status = YY_BUFFER_NEW; | |
| | |
| yy_switch_to_buffer(b ); | |
| | |
| return b; | |
| } | |
| | |
| /** Setup the input buffer state to scan a string. The next call to yylex() will | |
| * scan from a @e copy of @a str. | |
| * @param yystr a NUL-terminated string to scan | |
| * | |
| * @return the newly allocated buffer state object. | |
| * @note If you want to scan bytes that may contain NUL values, then use | |
| * yy_scan_bytes() instead. | |
| */ | |
| YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) | |
| { | |
| | |
| return yy_scan_bytes(yystr,strlen(yystr) ); | |
| } | |
| | |
| /** Setup the input buffer state to scan the given bytes. The next call to yylex() will | |
| * scan from a @e copy of @a bytes. | |
| * @param bytes the byte buffer to scan | |
| * @param len the number of bytes in the buffer pointed to by @a bytes. | |
| * | |
| * @return the newly allocated buffer state object. | |
| */ | |
| YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len ) | |
| { | |
| YY_BUFFER_STATE b; | |
| char *buf; | |
| yy_size_t n; | |
| int i; | |
| | |
| /* Get memory for full buffer, including space for trailing EOB's. */ | |
| n = _yybytes_len + 2; | |
| buf = (char *) yyalloc(n ); | |
| if ( ! buf ) | |
| YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); | |
| | |
| for ( i = 0; i < _yybytes_len; ++i ) | |
| buf[i] = yybytes[i]; | |
| | |
| buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; | |
| | |
| b = yy_scan_buffer(buf,n ); | |
| if ( ! b ) | |
| YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); | |
| | |
| /* It's okay to grow etc. this buffer, and we should throw it | |
| * away when we're done. | |
| */ | |
| b->yy_is_our_buffer = 1; | |
| | |
| return b; | |
| } | |
| | |
| #ifndef YY_EXIT_FAILURE | |
| #define YY_EXIT_FAILURE 2 | |
| #endif | |
| | |
| static void yy_fatal_error (yyconst char* msg ) | |
| { | |
| (void) fprintf( stderr, "%s\n", msg ); | |
| exit( YY_EXIT_FAILURE ); | |
| } | |
| | |
| /* Redefine yyless() so it works in section 3 code. */ | |
| | |
| #undef yyless | |
| #define yyless(n) \ | |
| do \ | |
| { \ | |
| /* Undo effects of setting up yytext. */ \ | |
| int yyless_macro_arg = (n); \ | |
| YY_LESS_LINENO(yyless_macro_arg);\ | |
| yytext[yyleng] = (yy_hold_char); \ | |
| (yy_c_buf_p) = yytext + yyless_macro_arg; \ | |
| (yy_hold_char) = *(yy_c_buf_p); \ | |
| *(yy_c_buf_p) = '\0'; \ | |
| yyleng = yyless_macro_arg; \ | |
| } \ | |
| while ( 0 ) | |
| | |
| /* Accessor methods (get/set functions) to struct members. */ | |
| | |
| /** Get the current line number. | |
| * | |
| */ | |
| int yyget_lineno (void) | |
| { | |
| | |
| return yylineno; | |
| } | |
| | |
| /** Get the input stream. | |
| * | |
| */ | |
| FILE *yyget_in (void) | |
| { | |
| return yyin; | |
| } | |
| | |
| /** Get the output stream. | |
| * | |
| */ | |
| FILE *yyget_out (void) | |
| { | |
| return yyout; | |
| } | |
| | |
| /** Get the length of the current token. | |
| * | |
| */ | |
| int yyget_leng (void) | |
| { | |
| return yyleng; | |
| } | |
| | |
| /** Get the current token. | |
| * | |
| */ | |
| | |
| char *yyget_text (void) | |
| { | |
| return yytext; | |
| } | |
| | |
| /** Set the current line number. | |
| * @param line_number | |
| * | |
| */ | |
| void yyset_lineno (int line_number ) | |
| { | |
| | |
| yylineno = line_number; | |
| } | |
| | |
| /** Set the input stream. This does not discard the current | |
| * input buffer. | |
| * @param in_str A readable stream. | |
| * | |
| * @see yy_switch_to_buffer | |
| */ | |
| void yyset_in (FILE * in_str ) | |
| { | |
| yyin = in_str ; | |
| } | |
| | |
| void yyset_out (FILE * out_str ) | |
| { | |
| yyout = out_str ; | |
| } | |
| | |
| int yyget_debug (void) | |
| { | |
| return yy_flex_debug; | |
| } | |
| | |
| void yyset_debug (int bdebug ) | |
| { | |
| yy_flex_debug = bdebug ; | |
| } | |
| | |
| static int yy_init_globals (void) | |
| { | |
| /* Initialization is the same as for the non-reentrant scanner. | |
| * This function is called from yylex_destroy(), so don't allocate here. | |
| */ | |
| | |
| (yy_buffer_stack) = 0; | |
| (yy_buffer_stack_top) = 0; | |
| (yy_buffer_stack_max) = 0; | |
| (yy_c_buf_p) = (char *) 0; | |
| (yy_init) = 0; | |
| (yy_start) = 0; | |
| | |
| (yy_state_buf) = 0; | |
| (yy_state_ptr) = 0; | |
| (yy_full_match) = 0; | |
| (yy_lp) = 0; | |
| | |
| /* Defined in main.c */ | |
| #ifdef YY_STDINIT | |
| yyin = stdin; | |
| yyout = stdout; | |
| #else | |
| yyin = (FILE *) 0; | |
| yyout = (FILE *) 0; | |
| #endif | |
| | |
| /* For future reference: Set errno on error, since we are called by | |
| * yylex_init() | |
| */ | |
| return 0; | |
| } | |
| | |
| /* yylex_destroy is for both reentrant and non-reentrant scanners. */ | |
| int yylex_destroy (void) | |
| { | |
| | |
| /* Pop the buffer stack, destroying each element. */ | |
| while(YY_CURRENT_BUFFER){ | |
| yy_delete_buffer(YY_CURRENT_BUFFER ); | |
| YY_CURRENT_BUFFER_LVALUE = NULL; | |
| yypop_buffer_state(); | |
| } | |
| | |
| /* Destroy the stack itself. */ | |
| yyfree((yy_buffer_stack) ); | |
| (yy_buffer_stack) = NULL; | |
| | |
| yyfree ( (yy_state_buf) ); | |
| (yy_state_buf) = NULL; | |
| | |
| /* Reset the globals. This is important in a non-reentrant scanner so the next time | |
| * yylex() is called, initialization will occur. */ | |
| yy_init_globals( ); | |
| | |
| return 0; | |
| } | |
| | |
| /* | |
| * Internal utility routines. | |
| */ | |
| | |
| #ifndef yytext_ptr | |
| static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) | |
| { | |
| register int i; | |
| for ( i = 0; i < n; ++i ) | |
| s1[i] = s2[i]; | |
| } | |
| #endif | |
| | |
| #ifdef YY_NEED_STRLEN | |
| static int yy_flex_strlen (yyconst char * s ) | |
| { | |
| register int n; | |
| for ( n = 0; s[n]; ++n ) | |
| ; | |
| | |
| return n; | |
| } | |
| #endif | |
| | |
| void *yyalloc (yy_size_t size ) | |
| { | |
| return (void *) malloc( size ); | |
| } | |
| | |
| void *yyrealloc (void * ptr, yy_size_t size ) | |
| { | |
| /* The cast to (char *) in the following accommodates both | |
| * implementations that use char* generic pointers, and those | |
| * that use void* generic pointers. It works with the latter | |
| * because both ANSI C and C++ allow castless assignment from | |
| * any pointer type to void*, and deal with argument conversions | |
| * as though doing an assignment. | |
| */ | |
| return (void *) realloc( (char *) ptr, size ); | |
| } | |
| | |
| void yyfree (void * ptr ) | |
| { | |
| free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ | |
| } | |
| | |
| #define YYTABLES_NAME "yytables" | |
| | |
| #line 9 "conftest.l" | |
| | |
| | |
| #ifdef YYTEXT_POINTER | |
| extern char *yytext; | |
| #endif | |
| int | |
| main (void) | |
| { | |
| return ! yylex () + ! yywrap (); | |
| } | |
configure:5379: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lfl >&5 | |
configure:5379: $? = 0 | |
configure:5389: result: -lfl | |
configure:5395: checking whether yytext is a pointer | |
configure:5411: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lfl >&5 | |
configure:5411: $? = 0 | |
configure:5419: result: yes | |
configure:5436: checking for bison | |
configure:5452: found /usr/bin/bison | |
configure:5463: result: bison -y | |
configure:5479: checking for gawk | |
configure:5506: result: awk | |
configure:5518: checking whether ln -s works | |
configure:5522: result: yes | |
configure:5531: checking for sed | |
configure:5547: found /usr/bin/sed | |
configure:5559: result: sed | |
configure:5569: checking for grep | |
configure:5585: found /usr/bin/grep | |
configure:5597: result: grep | |
configure:5607: checking for sort | |
configure:5623: found /usr/bin/sort | |
configure:5635: result: sort | |
configure:5645: checking for groff | |
configure:5661: found /usr/bin/groff | |
configure:5673: result: groff | |
configure:5683: checking for ps2pdf | |
configure:5711: result: false | |
configure:5721: checking for pstopdf | |
configure:5749: result: false | |
configure:5806: checking for pkg-config | |
configure:5824: found /usr/local/bin/pkg-config | |
configure:5836: result: /usr/local/bin/pkg-config | |
configure:5861: checking pkg-config is at least version 0.9.0 | |
configure:5864: result: yes | |
configure:5886: checking for tclsh8.6 | |
configure:5919: result: no | |
configure:5886: checking for tclsh8.5 | |
configure:5904: found /usr/bin/tclsh8.5 | |
configure:5916: result: /usr/bin/tclsh8.5 | |
configure:5935: checking whether /usr/bin/llvm-gcc and cc understand -c and -o together | |
configure:5966: /usr/bin/llvm-gcc -c conftest.c -o conftest2.o >&5 | |
configure:5970: $? = 0 | |
configure:5976: /usr/bin/llvm-gcc -c conftest.c -o conftest2.o >&5 | |
configure:5980: $? = 0 | |
configure:5991: cc -c conftest.c >&5 | |
configure:5995: $? = 0 | |
configure:6003: cc -c conftest.c -o conftest2.o >&5 | |
configure:6007: $? = 0 | |
configure:6013: cc -c conftest.c -o conftest2.o >&5 | |
configure:6017: $? = 0 | |
configure:6035: result: yes | |
configure:6173: checking for C++ compiler version | |
configure:6182: /usr/bin/llvm-g++ --version >&5 | |
i686-apple-darwin11-llvm-g++-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00) | |
Copyright (C) 2007 Free Software Foundation, Inc. | |
This is free software; see the source for copying conditions. There is NO | |
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
configure:6193: $? = 0 | |
configure:6182: /usr/bin/llvm-g++ -v >&5 | |
Using built-in specs. | |
Target: i686-apple-darwin11 | |
Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.9~22/src/configure --disable-checking --enable-werror --prefix=/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2 --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin11 --enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-2336.9~22/dst-llvmCore/Developer/usr/local --program-prefix=i686-apple-darwin11- --host=x86_64-apple-darwin11 --target=i686-apple-darwin11 --with-gxx-include-dir=/usr/include/c++/4.2.1 | |
Thread model: posix | |
gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00) | |
configure:6193: $? = 0 | |
configure:6182: /usr/bin/llvm-g++ -V >&5 | |
llvm-g++-4.2: argument to `-V' is missing | |
configure:6193: $? = 1 | |
configure:6182: /usr/bin/llvm-g++ -qversion >&5 | |
i686-apple-darwin11-llvm-g++-4.2: no input files | |
configure:6193: $? = 1 | |
configure:6197: checking whether we are using the GNU C++ compiler | |
configure:6216: /usr/bin/llvm-g++ -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.cpp >&5 | |
configure:6216: $? = 0 | |
configure:6225: result: yes | |
configure:6234: checking whether /usr/bin/llvm-g++ accepts -g | |
configure:6254: /usr/bin/llvm-g++ -c -g -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.cpp >&5 | |
configure:6254: $? = 0 | |
configure:6295: result: yes | |
configure:6320: checking dependency style of /usr/bin/llvm-g++ | |
configure:6430: result: none | |
configure:6551: checking for Objective C compiler version | |
configure:6560: /usr/bin/llvm-gcc --version >&5 | |
i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00) | |
Copyright (C) 2007 Free Software Foundation, Inc. | |
This is free software; see the source for copying conditions. There is NO | |
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
configure:6571: $? = 0 | |
configure:6560: /usr/bin/llvm-gcc -v >&5 | |
Using built-in specs. | |
Target: i686-apple-darwin11 | |
Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.9~22/src/configure --disable-checking --enable-werror --prefix=/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2 --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin11 --enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-2336.9~22/dst-llvmCore/Developer/usr/local --program-prefix=i686-apple-darwin11- --host=x86_64-apple-darwin11 --target=i686-apple-darwin11 --with-gxx-include-dir=/usr/include/c++/4.2.1 | |
Thread model: posix | |
gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00) | |
configure:6571: $? = 0 | |
configure:6560: /usr/bin/llvm-gcc -V >&5 | |
llvm-gcc-4.2: argument to `-V' is missing | |
configure:6571: $? = 1 | |
configure:6560: /usr/bin/llvm-gcc -qversion >&5 | |
i686-apple-darwin11-llvm-gcc-4.2: no input files | |
configure:6571: $? = 1 | |
configure:6575: checking whether we are using the GNU Objective C compiler | |
configure:6594: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.m >&5 | |
configure:6594: $? = 0 | |
configure:6603: result: yes | |
configure:6612: checking whether /usr/bin/llvm-gcc accepts -g | |
configure:6632: /usr/bin/llvm-gcc -c -g -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.m >&5 | |
configure:6632: $? = 0 | |
configure:6673: result: yes | |
configure:6698: checking dependency style of /usr/bin/llvm-gcc | |
configure:6806: result: none | |
configure:6822: checking for inline | |
configure:6838: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:6838: $? = 0 | |
configure:6846: result: inline | |
configure:6931: checking for windres | |
configure:6961: result: no | |
configure:7035: checking for an ANSI C-conforming const | |
configure:7100: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7100: $? = 0 | |
configure:7107: result: yes | |
configure:7120: checking how to run the C preprocessor | |
configure:7151: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7151: $? = 0 | |
configure:7165: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
conftest.c:21:28: error: ac_nonexistent.h: No such file or directory | |
configure:7165: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| /* end confdefs.h. */ | |
| #include <ac_nonexistent.h> | |
configure:7190: result: /usr/bin/llvm-gcc -E | |
configure:7210: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7210: $? = 0 | |
configure:7224: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
conftest.c:21:28: error: ac_nonexistent.h: No such file or directory | |
configure:7224: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| /* end confdefs.h. */ | |
| #include <ac_nonexistent.h> | |
configure:7253: checking for grep that handles long lines and -e | |
configure:7311: result: grep | |
configure:7316: checking for egrep | |
configure:7378: result: grep -E | |
configure:7383: checking for ANSI C header files | |
configure:7403: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7403: $? = 0 | |
configure:7476: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:7476: $? = 0 | |
configure:7476: ./conftest | |
configure:7476: $? = 0 | |
configure:7487: result: yes | |
configure:7500: checking for sys/types.h | |
configure:7500: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7500: $? = 0 | |
configure:7500: result: yes | |
configure:7500: checking for sys/stat.h | |
configure:7500: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7500: $? = 0 | |
configure:7500: result: yes | |
configure:7500: checking for stdlib.h | |
configure:7500: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7500: $? = 0 | |
configure:7500: result: yes | |
configure:7500: checking for string.h | |
configure:7500: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7500: $? = 0 | |
configure:7500: result: yes | |
configure:7500: checking for memory.h | |
configure:7500: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7500: $? = 0 | |
configure:7500: result: yes | |
configure:7500: checking for strings.h | |
configure:7500: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7500: $? = 0 | |
configure:7500: result: yes | |
configure:7500: checking for inttypes.h | |
configure:7500: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7500: $? = 0 | |
configure:7500: result: yes | |
configure:7500: checking for stdint.h | |
configure:7500: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7500: $? = 0 | |
configure:7500: result: yes | |
configure:7500: checking for unistd.h | |
configure:7500: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7500: $? = 0 | |
configure:7500: result: yes | |
configure:7513: checking for mode_t | |
configure:7513: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7513: $? = 0 | |
configure:7513: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:67: error: expected expression before ')' token | |
configure:7513: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| if (sizeof ((mode_t))) | |
| return 0; | |
| ; | |
| return 0; | |
| } | |
configure:7513: result: yes | |
configure:7524: checking for pid_t | |
configure:7524: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7524: $? = 0 | |
configure:7524: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:67: error: expected expression before ')' token | |
configure:7524: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| if (sizeof ((pid_t))) | |
| return 0; | |
| ; | |
| return 0; | |
| } | |
configure:7524: result: yes | |
configure:7535: checking for size_t | |
configure:7535: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7535: $? = 0 | |
configure:7535: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:67: error: expected expression before ')' token | |
configure:7535: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| if (sizeof ((size_t))) | |
| return 0; | |
| ; | |
| return 0; | |
| } | |
configure:7535: result: yes | |
configure:7546: checking for ssize_t | |
configure:7546: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7546: $? = 0 | |
configure:7546: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:67: error: expected expression before ')' token | |
configure:7546: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| if (sizeof ((ssize_t))) | |
| return 0; | |
| ; | |
| return 0; | |
| } | |
configure:7546: result: yes | |
configure:7557: checking for uid_t in sys/types.h | |
configure:7576: result: yes | |
configure:7598: checking stdarg.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking stdarg.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for stdarg.h | |
configure:7598: result: yes | |
configure:7598: checking stddef.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking stddef.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for stddef.h | |
configure:7598: result: yes | |
configure:7598: checking for stddef.h | |
configure:7598: result: yes | |
configure:7598: checking for stdlib.h | |
configure:7598: result: yes | |
configure:7598: checking for stdint.h | |
configure:7598: result: yes | |
configure:7598: checking malloc.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c:69:20: error: malloc.h: No such file or directory | |
configure:7598: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <malloc.h> | |
configure:7598: result: no | |
configure:7598: checking malloc.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
conftest.c:36:20: error: malloc.h: No such file or directory | |
configure:7598: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| /* end confdefs.h. */ | |
| #include <malloc.h> | |
configure:7598: result: no | |
configure:7598: checking for malloc.h | |
configure:7598: result: no | |
configure:7598: checking fcntl.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking fcntl.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for fcntl.h | |
configure:7598: result: yes | |
configure:7598: checking search.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking search.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for search.h | |
configure:7598: result: yes | |
configure:7598: checking getopt.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking getopt.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for getopt.h | |
configure:7598: result: yes | |
configure:7598: checking pthread.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking pthread.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for pthread.h | |
configure:7598: result: yes | |
configure:7598: checking values.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c:73:20: error: values.h: No such file or directory | |
configure:7598: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <values.h> | |
configure:7598: result: no | |
configure:7598: checking values.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
conftest.c:40:20: error: values.h: No such file or directory | |
configure:7598: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| /* end confdefs.h. */ | |
| #include <values.h> | |
configure:7598: result: no | |
configure:7598: checking for values.h | |
configure:7598: result: no | |
configure:7598: checking float.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking float.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for float.h | |
configure:7598: result: yes | |
configure:7598: checking limits.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking limits.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for limits.h | |
configure:7598: result: yes | |
configure:7598: checking termios.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking termios.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for termios.h | |
configure:7598: result: yes | |
configure:7598: checking errno.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking errno.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for errno.h | |
configure:7598: result: yes | |
configure:7598: checking time.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking time.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for time.h | |
configure:7598: result: yes | |
configure:7598: checking for unistd.h | |
configure:7598: result: yes | |
configure:7598: checking fenv.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking fenv.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for fenv.h | |
configure:7598: result: yes | |
configure:7598: checking for string.h | |
configure:7598: result: yes | |
configure:7598: checking for strings.h | |
configure:7598: result: yes | |
configure:7598: checking for inttypes.h | |
configure:7598: result: yes | |
configure:7598: checking setjmp.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking setjmp.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for setjmp.h | |
configure:7598: result: yes | |
configure:7598: checking sys/time.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking sys/time.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for sys/time.h | |
configure:7598: result: yes | |
configure:7598: checking sys/times.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking sys/times.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for sys/times.h | |
configure:7598: result: yes | |
configure:7598: checking for sys/types.h | |
configure:7598: result: yes | |
configure:7598: checking sys/select.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking sys/select.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for sys/select.h | |
configure:7598: result: yes | |
configure:7598: checking fpu_control.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c:88:25: error: fpu_control.h: No such file or directory | |
configure:7598: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <fpu_control.h> | |
configure:7598: result: no | |
configure:7598: checking fpu_control.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
conftest.c:55:25: error: fpu_control.h: No such file or directory | |
configure:7598: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| /* end confdefs.h. */ | |
| #include <fpu_control.h> | |
configure:7598: result: no | |
configure:7598: checking for fpu_control.h | |
configure:7598: result: no | |
configure:7598: checking sys/fpu.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c:88:21: error: sys/fpu.h: No such file or directory | |
configure:7598: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <sys/fpu.h> | |
configure:7598: result: no | |
configure:7598: checking sys/fpu.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
conftest.c:55:21: error: sys/fpu.h: No such file or directory | |
configure:7598: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| /* end confdefs.h. */ | |
| #include <sys/fpu.h> | |
configure:7598: result: no | |
configure:7598: checking for sys/fpu.h | |
configure:7598: result: no | |
configure:7598: checking sys/socket.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking sys/socket.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for sys/socket.h | |
configure:7598: result: yes | |
configure:7598: checking for sys/stat.h | |
configure:7598: result: yes | |
configure:7598: checking sys/mman.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking sys/mman.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for sys/mman.h | |
configure:7598: result: yes | |
configure:7598: checking sys/ioctl.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking sys/ioctl.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for sys/ioctl.h | |
configure:7598: result: yes | |
configure:7598: checking sys/inotify.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c:92:25: error: sys/inotify.h: No such file or directory | |
configure:7598: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <sys/inotify.h> | |
configure:7598: result: no | |
configure:7598: checking sys/inotify.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
conftest.c:59:25: error: sys/inotify.h: No such file or directory | |
configure:7598: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| /* end confdefs.h. */ | |
| #include <sys/inotify.h> | |
configure:7598: result: no | |
configure:7598: checking for sys/inotify.h | |
configure:7598: result: no | |
configure:7598: checking langinfo.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking langinfo.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for langinfo.h | |
configure:7598: result: yes | |
configure:7598: checking libintl.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking libintl.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for libintl.h | |
configure:7598: result: yes | |
configure:7598: checking crt_externs.h usability | |
configure:7598: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking crt_externs.h presence | |
configure:7598: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:7598: $? = 0 | |
configure:7598: result: yes | |
configure:7598: checking for crt_externs.h | |
configure:7598: result: yes | |
configure:7609: checking whether time.h and sys/time.h may both be included | |
configure:7629: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7629: $? = 0 | |
configure:7636: result: yes | |
configure:7647: checking for dirent.h that defines DIR | |
configure:7666: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7666: $? = 0 | |
configure:7674: result: yes | |
configure:7688: checking for library containing opendir | |
configure:7719: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:7719: $? = 0 | |
configure:7736: result: none required | |
configure:7803: checking for stdbool.h that conforms to C99 | |
configure:7888: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c:119: error: initializer element is not constant | |
configure:7888: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| /* end confdefs.h. */ | |
| | |
| #include <stdbool.h> | |
| #ifndef bool | |
| "error: bool is not defined" | |
| #endif | |
| #ifndef false | |
| "error: false is not defined" | |
| #endif | |
| #if false | |
| "error: false is not 0" | |
| #endif | |
| #ifndef true | |
| "error: true is not defined" | |
| #endif | |
| #if true != 1 | |
| "error: true is not 1" | |
| #endif | |
| #ifndef __bool_true_false_are_defined | |
| "error: __bool_true_false_are_defined is not defined" | |
| #endif | |
| | |
| struct s { _Bool s: 1; _Bool t; } s; | |
| | |
| char a[true == 1 ? 1 : -1]; | |
| char b[false == 0 ? 1 : -1]; | |
| char c[__bool_true_false_are_defined == 1 ? 1 : -1]; | |
| char d[(bool) 0.5 == true ? 1 : -1]; | |
| bool e = &s; | |
| char f[(_Bool) 0.0 == false ? 1 : -1]; | |
| char g[true]; | |
| char h[sizeof (_Bool)]; | |
| char i[sizeof s.t]; | |
| enum { j = false, k = true, l = false * true, m = true * 256 }; | |
| /* The following fails for | |
| HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003]. */ | |
| _Bool n[m]; | |
| char o[sizeof n == m * sizeof n[0] ? 1 : -1]; | |
| char p[-1 - (_Bool) 0 < 0 && -1 - (bool) 0 < 0 ? 1 : -1]; | |
| # if defined __xlc__ || defined __GNUC__ | |
| /* Catch a bug in IBM AIX xlc compiler version 6.0.0.0 | |
| reported by James Lemley on 2005-10-05; see | |
| http://lists.gnu.org/archive/html/bug-coreutils/2005-10/msg00086.html | |
| This test is not quite right, since xlc is allowed to | |
| reject this program, as the initializer for xlcbug is | |
| not one of the forms that C requires support for. | |
| However, doing the test right would require a runtime | |
| test, and that would make cross-compilation harder. | |
| Let us hope that IBM fixes the xlc bug, and also adds | |
| support for this kind of constant expression. In the | |
| meantime, this test will reject xlc, which is OK, since | |
| our stdbool.h substitute should suffice. We also test | |
| this with GCC, where it should work, to detect more | |
| quickly whether someone messes up the test in the | |
| future. */ | |
| char digs[] = "0123456789"; | |
| int xlcbug = 1 / (&(digs + 5)[-2 + (bool) 1] == &digs[4] ? 1 : -1); | |
| # endif | |
| /* Catch a bug in an HP-UX C compiler. See | |
| http://gcc.gnu.org/ml/gcc-patches/2003-12/msg02303.html | |
| http://lists.gnu.org/archive/html/bug-coreutils/2005-11/msg00161.html | |
| */ | |
| _Bool q = true; | |
| _Bool *pq = &q; | |
| | |
| int | |
| main () | |
| { | |
| | |
| *pq |= q; | |
| *pq |= ! q; | |
| /* Refer to every declared value, to avoid compiler optimizations. */ | |
| return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l | |
| + !m + !n + !o + !p + !q + !pq); | |
| | |
| ; | |
| return 0; | |
| } | |
configure:7895: result: no | |
configure:7897: checking for _Bool | |
configure:7897: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:7897: $? = 0 | |
configure:7897: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:100: error: expected expression before ')' token | |
configure:7897: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| if (sizeof ((_Bool))) | |
| return 0; | |
| ; | |
| return 0; | |
| } | |
configure:7897: result: yes | |
configure:7918: checking for socklen_t | |
configure:7944: result: yes | |
configure:7954: checking for bool | |
configure:7973: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:74: error: 'bool' undeclared (first use in this function) | |
conftest.c:74: error: (Each undeclared identifier is reported only once | |
conftest.c:74: error: for each function it appears in.) | |
conftest.c:74: error: expected ';' before 'foo' | |
configure:7973: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| /* end confdefs.h. */ | |
| | |
| #ifdef HAVE_STDBOOL_H> | |
| #include <stdbool.h> | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| | |
| bool foo = true, bar = false; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:7983: result: no | |
configure:7990: checking for struct dioattr | |
configure:8006: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:72: error: storage size of 'dio' isn't known | |
configure:8006: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| /* end confdefs.h. */ | |
| #include <sys/types.h> | |
| #include <fcntl.h> | |
| #include <stdio.h> | |
| int | |
| main () | |
| { | |
| | |
| struct dioattr dio; | |
| ; | |
| return 0; | |
| } | |
configure:8015: result: no | |
configure:8022: checking for main in -lm | |
configure:8041: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lm >&5 | |
configure:8041: $? = 0 | |
configure:8050: result: yes | |
configure:8063: checking for feenableexcept | |
configure:8063: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lm >&5 | |
Undefined symbols for architecture x86_64: | |
"_feenableexcept", referenced from: | |
_main in ccNBB5St.o | |
ld: symbol(s) not found for architecture x86_64 | |
collect2: ld returned 1 exit status | |
configure:8063: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| /* end confdefs.h. */ | |
| /* Define feenableexcept to an innocuous variant, in case <limits.h> declares feenableexcept. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define feenableexcept innocuous_feenableexcept | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char feenableexcept (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef feenableexcept | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char feenableexcept (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub_feenableexcept || defined __stub___feenableexcept | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return feenableexcept (); | |
| ; | |
| return 0; | |
| } | |
configure:8063: result: no | |
configure:8063: checking for fesetenv | |
configure:8063: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lm >&5 | |
configure:8063: $? = 0 | |
configure:8063: result: yes | |
configure:8079: checking libgen.h usability | |
configure:8079: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:8079: $? = 0 | |
configure:8079: result: yes | |
configure:8079: checking libgen.h presence | |
configure:8079: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:8079: $? = 0 | |
configure:8079: result: yes | |
configure:8079: checking for libgen.h | |
configure:8079: result: yes | |
configure:8081: checking for basename in -lgen | |
configure:8106: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lgen >&5 | |
ld: library not found for -lgen | |
collect2: ld returned 1 exit status | |
configure:8106: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| /* end confdefs.h. */ | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char basename (); | |
| int | |
| main () | |
| { | |
| return basename (); | |
| ; | |
| return 0; | |
| } | |
configure:8115: result: no | |
configure:8141: checking for working alloca.h | |
configure:8158: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8158: $? = 0 | |
configure:8166: result: yes | |
configure:8174: checking for alloca | |
configure:8211: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8211: $? = 0 | |
configure:8219: result: yes | |
configure:8336: checking for lrand48 | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for drand48 | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for srand48 | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for setmode | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for setenv | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for getenv | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for __freadable | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
Undefined symbols for architecture x86_64: | |
"___freadable", referenced from: | |
_main in ccuV0NER.o | |
ld: symbol(s) not found for architecture x86_64 | |
collect2: ld returned 1 exit status | |
configure:8336: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| /* end confdefs.h. */ | |
| /* Define __freadable to an innocuous variant, in case <limits.h> declares __freadable. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define __freadable innocuous___freadable | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char __freadable (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef __freadable | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char __freadable (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub___freadable || defined __stub_____freadable | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return __freadable (); | |
| ; | |
| return 0; | |
| } | |
configure:8336: result: no | |
configure:8336: checking for _sysconf | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
Undefined symbols for architecture x86_64: | |
"__sysconf", referenced from: | |
_main in ccHRyX9b.o | |
ld: symbol(s) not found for architecture x86_64 | |
collect2: ld returned 1 exit status | |
configure:8336: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| /* end confdefs.h. */ | |
| /* Define _sysconf to an innocuous variant, in case <limits.h> declares _sysconf. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define _sysconf innocuous__sysconf | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char _sysconf (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef _sysconf | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char _sysconf (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub__sysconf || defined __stub____sysconf | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return _sysconf (); | |
| ; | |
| return 0; | |
| } | |
configure:8336: result: no | |
configure:8336: checking for getrusage | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for strerror | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for cbrt | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for lsqrt | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
Undefined symbols for architecture x86_64: | |
"_lsqrt", referenced from: | |
_main in ccVeUjqk.o | |
ld: symbol(s) not found for architecture x86_64 | |
collect2: ld returned 1 exit status | |
configure:8336: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| /* end confdefs.h. */ | |
| /* Define lsqrt to an innocuous variant, in case <limits.h> declares lsqrt. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define lsqrt innocuous_lsqrt | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char lsqrt (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef lsqrt | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char lsqrt (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub_lsqrt || defined __stub___lsqrt | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return lsqrt (); | |
| ; | |
| return 0; | |
| } | |
configure:8336: result: no | |
configure:8336: checking for vsnprintf | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for strtoul | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for strtoll | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for strtoull | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for uname | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for memset | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for nl_langinfo | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for pow | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for sqrt | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for strchr | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for strdup | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for strerror | |
configure:8336: result: yes | |
configure:8336: checking for strstr | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8336: checking for _NSGetEnviron | |
configure:8336: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8336: $? = 0 | |
configure:8336: result: yes | |
configure:8350: checking for strcasecmp | |
configure:8350: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8350: $? = 0 | |
configure:8350: result: yes | |
configure:8350: checking for strncasecmp | |
configure:8350: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8350: $? = 0 | |
configure:8350: result: yes | |
configure:8350: checking for strcasestr | |
configure:8350: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:8350: $? = 0 | |
configure:8350: result: yes | |
configure:8395: checking for a sed that does not truncate output | |
configure:8459: result: sed | |
configure:8477: checking for fgrep | |
configure:8539: result: grep -F | |
configure:8574: checking for ld used by /usr/bin/llvm-gcc | |
configure:8641: result: /usr/bin/llvm-gcc | |
configure:8648: checking if the linker (/usr/bin/llvm-gcc) is GNU ld | |
configure:8663: result: no | |
configure:8675: checking for BSD- or MS-compatible name lister (nm) | |
configure:8724: result: /usr/bin/nm | |
configure:8842: checking the name lister (/usr/bin/nm) interface | |
configure:8849: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:8852: /usr/bin/nm "conftest.o" | |
configure:8855: output | |
0000000000000000 S _some_variable | |
configure:8862: result: BSD nm | |
configure:8866: checking the maximum length of command line arguments | |
configure:8986: result: 196608 | |
configure:9003: checking whether the shell understands some XSI constructs | |
configure:9013: result: yes | |
configure:9017: checking whether the shell understands "+=" | |
configure:9023: result: yes | |
configure:9058: checking for /usr/bin/llvm-gcc option to reload object files | |
configure:9065: result: -r | |
configure:9134: checking for objdump | |
configure:9164: result: no | |
configure:9193: checking how to recognize dependent libraries | |
configure:9389: result: pass_all | |
configure:9449: checking for ar | |
configure:9465: found /usr/bin/ar | |
configure:9476: result: ar | |
configure:9554: checking for strip | |
configure:9570: found /usr/bin/strip | |
configure:9581: result: strip | |
configure:9653: checking for ranlib | |
configure:9669: found /usr/bin/ranlib | |
configure:9680: result: ranlib | |
configure:9770: checking command to parse /usr/bin/nm output from /usr/bin/llvm-gcc object | |
configure:9888: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:9891: $? = 0 | |
configure:9895: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm | |
configure:9898: $? = 0 | |
cannot find nm_test_var in conftest.nm | |
configure:9888: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:9891: $? = 0 | |
configure:9895: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p' \> conftest.nm | |
configure:9898: $? = 0 | |
configure:9952: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c conftstm.o >&5 | |
configure:9955: $? = 0 | |
configure:9993: result: ok | |
configure:10257: checking for dsymutil | |
configure:10273: found /usr/bin/dsymutil | |
configure:10284: result: dsymutil | |
configure:10349: checking for nmedit | |
configure:10365: found /usr/bin/nmedit | |
configure:10376: result: nmedit | |
configure:10441: checking for lipo | |
configure:10457: found /usr/bin/lipo | |
configure:10468: result: lipo | |
configure:10533: checking for otool | |
configure:10549: found /usr/bin/otool | |
configure:10560: result: otool | |
configure:10625: checking for otool64 | |
configure:10655: result: no | |
configure:10700: checking for -single_module linker flag | |
/usr/bin/llvm-gcc -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib -o libconftest.dylib -dynamiclib -Wl,-single_module conftest.c | |
configure:10727: result: yes | |
configure:10729: checking for -exported_symbols_list linker flag | |
configure:10749: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib -Wl,-exported_symbols_list,conftest.sym conftest.c >&5 | |
configure:10749: $? = 0 | |
configure:10759: result: yes | |
configure:10798: checking for dlfcn.h | |
configure:10798: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:10798: $? = 0 | |
configure:10798: result: yes | |
configure:10923: checking for C++ compiler version | |
configure:10932: /usr/bin/llvm-g++ --version >&5 | |
i686-apple-darwin11-llvm-g++-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00) | |
Copyright (C) 2007 Free Software Foundation, Inc. | |
This is free software; see the source for copying conditions. There is NO | |
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
configure:10943: $? = 0 | |
configure:10932: /usr/bin/llvm-g++ -v >&5 | |
Using built-in specs. | |
Target: i686-apple-darwin11 | |
Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.9~22/src/configure --disable-checking --enable-werror --prefix=/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2 --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin11 --enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-2336.9~22/dst-llvmCore/Developer/usr/local --program-prefix=i686-apple-darwin11- --host=x86_64-apple-darwin11 --target=i686-apple-darwin11 --with-gxx-include-dir=/usr/include/c++/4.2.1 | |
Thread model: posix | |
gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00) | |
configure:10943: $? = 0 | |
configure:10932: /usr/bin/llvm-g++ -V >&5 | |
llvm-g++-4.2: argument to `-V' is missing | |
configure:10943: $? = 1 | |
configure:10932: /usr/bin/llvm-g++ -qversion >&5 | |
i686-apple-darwin11-llvm-g++-4.2: no input files | |
configure:10943: $? = 1 | |
configure:10947: checking whether we are using the GNU C++ compiler | |
configure:10975: result: yes | |
configure:10984: checking whether /usr/bin/llvm-g++ accepts -g | |
configure:11045: result: yes | |
configure:11070: checking dependency style of /usr/bin/llvm-g++ | |
configure:11180: result: none | |
configure:11203: checking how to run the C++ preprocessor | |
configure:11230: /usr/bin/llvm-g++ -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.cpp | |
configure:11230: $? = 0 | |
configure:11244: /usr/bin/llvm-g++ -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.cpp | |
conftest.cpp:95:28: error: ac_nonexistent.h: No such file or directory | |
configure:11244: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| /* end confdefs.h. */ | |
| #include <ac_nonexistent.h> | |
configure:11269: result: /usr/bin/llvm-g++ -E | |
configure:11289: /usr/bin/llvm-g++ -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.cpp | |
configure:11289: $? = 0 | |
configure:11303: /usr/bin/llvm-g++ -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.cpp | |
conftest.cpp:95:28: error: ac_nonexistent.h: No such file or directory | |
configure:11303: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| /* end confdefs.h. */ | |
| #include <ac_nonexistent.h> | |
configure:11448: checking for objdir | |
configure:11463: result: .libs | |
configure:11759: checking if /usr/bin/llvm-gcc supports -fno-rtti -fno-exceptions | |
configure:11777: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -fno-rtti -fno-exceptions conftest.c >&5 | |
configure:11781: $? = 0 | |
configure:11794: result: yes | |
configure:11814: checking for /usr/bin/llvm-gcc option to produce PIC | |
configure:12086: result: -fno-common -DPIC | |
configure:12098: checking if /usr/bin/llvm-gcc PIC flag -fno-common -DPIC works | |
configure:12116: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -fno-common -DPIC -DPIC conftest.c >&5 | |
configure:12120: $? = 0 | |
configure:12133: result: yes | |
configure:12157: checking if /usr/bin/llvm-gcc static flag -static works | |
configure:12185: result: no | |
configure:12200: checking if /usr/bin/llvm-gcc supports -c -o file.o | |
configure:12221: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -o out/conftest2.o conftest.c >&5 | |
configure:12225: $? = 0 | |
configure:12247: result: yes | |
configure:12255: checking if /usr/bin/llvm-gcc supports -c -o file.o | |
configure:12302: result: yes | |
configure:12335: checking whether the /usr/bin/llvm-gcc linker (/usr/bin/llvm-gcc) supports shared libraries | |
configure:13321: result: yes | |
configure:13560: checking dynamic linker characteristics | |
configure:14214: result: darwin11.4.0 dyld | |
configure:14316: checking how to hardcode library paths into programs | |
configure:14341: result: immediate | |
configure:14386: checking for dlopen in -ldl | |
configure:14411: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -ldl >&5 | |
configure:14411: $? = 0 | |
configure:14420: result: yes | |
configure:14635: checking whether a program can dlopen itself | |
configure:14705: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -DHAVE_DLFCN_H -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -ldl >&5 | |
configure:14708: $? = 0 | |
configure:14726: result: yes | |
configure:14731: checking whether a statically linked program can dlopen itself | |
configure:14801: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -DHAVE_DLFCN_H -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -ldl >&5 | |
configure:14804: $? = 0 | |
configure:14822: result: yes | |
configure:14861: checking whether stripping libraries is possible | |
configure:14875: result: yes | |
configure:14901: checking if libtool supports shared libraries | |
configure:14903: result: yes | |
configure:14906: checking whether to build shared libraries | |
configure:14927: result: yes | |
configure:14930: checking whether to build static libraries | |
configure:14934: result: no | |
configure:15084: checking for ld used by /usr/bin/llvm-g++ | |
configure:15151: result: /usr/bin/llvm-gcc | |
configure:15158: checking if the linker (/usr/bin/llvm-gcc) is GNU ld | |
configure:15173: result: no | |
configure:15228: checking whether the /usr/bin/llvm-g++ linker (/usr/bin/llvm-gcc) supports shared libraries | |
configure:16141: result: yes | |
configure:16169: /usr/bin/llvm-g++ -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.cpp >&5 | |
configure:16172: $? = 0 | |
configure:16354: checking for /usr/bin/llvm-g++ option to produce PIC | |
configure:16671: result: -fno-common -DPIC | |
configure:16680: checking if /usr/bin/llvm-g++ PIC flag -fno-common -DPIC works | |
configure:16698: /usr/bin/llvm-g++ -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -fno-common -DPIC -DPIC conftest.cpp >&5 | |
configure:16702: $? = 0 | |
configure:16715: result: yes | |
configure:16736: checking if /usr/bin/llvm-g++ static flag -static works | |
configure:16764: result: no | |
configure:16776: checking if /usr/bin/llvm-g++ supports -c -o file.o | |
configure:16797: /usr/bin/llvm-g++ -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -o out/conftest2.o conftest.cpp >&5 | |
configure:16801: $? = 0 | |
configure:16823: result: yes | |
configure:16828: checking if /usr/bin/llvm-g++ supports -c -o file.o | |
configure:16875: result: yes | |
configure:16905: checking whether the /usr/bin/llvm-g++ linker (/usr/bin/llvm-gcc) supports shared libraries | |
configure:16931: result: yes | |
configure:17068: checking dynamic linker characteristics | |
configure:17670: result: darwin11.4.0 dyld | |
configure:17721: checking how to hardcode library paths into programs | |
configure:17746: result: immediate | |
configure:17812: checking which extension is used for runtime loadable modules | |
configure:17822: result: .so | |
configure:17832: checking which variable specifies run-time module search path | |
configure:17839: result: DYLD_LIBRARY_PATH | |
configure:17849: checking for the default library search path | |
configure:17856: result: /usr/local/lib /lib /usr/lib | |
configure:17886: checking for library containing dlopen | |
configure:17917: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:17917: $? = 0 | |
configure:17934: result: none required | |
configure:18024: checking for dlerror | |
configure:18024: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:18024: $? = 0 | |
configure:18024: result: yes | |
configure:18038: checking for shl_load | |
configure:18038: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
Undefined symbols for architecture x86_64: | |
"_shl_load", referenced from: | |
_main in ccrX1EMd.o | |
ld: symbol(s) not found for architecture x86_64 | |
collect2: ld returned 1 exit status | |
configure:18038: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| /* end confdefs.h. */ | |
| /* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define shl_load innocuous_shl_load | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char shl_load (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef shl_load | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char shl_load (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub_shl_load || defined __stub___shl_load | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return shl_load (); | |
| ; | |
| return 0; | |
| } | |
configure:18038: result: no | |
configure:18045: checking for shl_load in -ldld | |
configure:18070: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -ldld >&5 | |
ld: library not found for -ldld | |
collect2: ld returned 1 exit status | |
configure:18070: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| /* end confdefs.h. */ | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char shl_load (); | |
| int | |
| main () | |
| { | |
| return shl_load (); | |
| ; | |
| return 0; | |
| } | |
configure:18079: result: no | |
configure:18125: checking for dld_link in -ldld | |
configure:18150: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -ldld >&5 | |
ld: library not found for -ldld | |
collect2: ld returned 1 exit status | |
configure:18150: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| /* end confdefs.h. */ | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char dld_link (); | |
| int | |
| main () | |
| { | |
| return dld_link (); | |
| ; | |
| return 0; | |
| } | |
configure:18159: result: no | |
configure:18193: checking for _ prefix in compiled symbols | |
configure:18203: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:18206: $? = 0 | |
configure:18210: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p' \> conftest.nm | |
configure:18213: $? = 0 | |
configure:18235: result: yes | |
configure:18243: checking whether we have to add an underscore for dlsym | |
configure:18316: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:18319: $? = 0 | |
configure:18338: result: no | |
configure:18349: checking whether deplibs are loaded by dlopen | |
configure:18443: result: yes | |
configure:18455: checking for argz.h | |
configure:18455: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c:136:18: error: argz.h: No such file or directory | |
configure:18455: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| | |
| #include <argz.h> | |
configure:18455: result: no | |
configure:18467: checking for error_t | |
configure:18467: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:109: error: 'error_t' undeclared (first use in this function) | |
conftest.c:109: error: (Each undeclared identifier is reported only once | |
conftest.c:109: error: for each function it appears in.) | |
configure:18467: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| /* end confdefs.h. */ | |
| #if defined(HAVE_ARGZ_H) | |
| # include <argz.h> | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| if (sizeof (error_t)) | |
| return 0; | |
| ; | |
| return 0; | |
| } | |
configure:18467: result: no | |
configure:18493: checking for argz_add | |
configure:18493: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
Undefined symbols for architecture x86_64: | |
"_argz_add", referenced from: | |
_main in ccqggMXf.o | |
ld: symbol(s) not found for architecture x86_64 | |
collect2: ld returned 1 exit status | |
configure:18493: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| /* end confdefs.h. */ | |
| /* Define argz_add to an innocuous variant, in case <limits.h> declares argz_add. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define argz_add innocuous_argz_add | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char argz_add (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef argz_add | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char argz_add (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub_argz_add || defined __stub___argz_add | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return argz_add (); | |
| ; | |
| return 0; | |
| } | |
configure:18493: result: no | |
configure:18493: checking for argz_append | |
configure:18493: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
Undefined symbols for architecture x86_64: | |
"_argz_append", referenced from: | |
_main in cc1NPVx6.o | |
ld: symbol(s) not found for architecture x86_64 | |
collect2: ld returned 1 exit status | |
configure:18493: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| /* end confdefs.h. */ | |
| /* Define argz_append to an innocuous variant, in case <limits.h> declares argz_append. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define argz_append innocuous_argz_append | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char argz_append (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef argz_append | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char argz_append (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub_argz_append || defined __stub___argz_append | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return argz_append (); | |
| ; | |
| return 0; | |
| } | |
configure:18493: result: no | |
configure:18493: checking for argz_count | |
configure:18493: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
Undefined symbols for architecture x86_64: | |
"_argz_count", referenced from: | |
_main in ccTx1cT1.o | |
ld: symbol(s) not found for architecture x86_64 | |
collect2: ld returned 1 exit status | |
configure:18493: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| /* end confdefs.h. */ | |
| /* Define argz_count to an innocuous variant, in case <limits.h> declares argz_count. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define argz_count innocuous_argz_count | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char argz_count (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef argz_count | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char argz_count (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub_argz_count || defined __stub___argz_count | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return argz_count (); | |
| ; | |
| return 0; | |
| } | |
configure:18493: result: no | |
configure:18493: checking for argz_create_sep | |
configure:18493: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
Undefined symbols for architecture x86_64: | |
"_argz_create_sep", referenced from: | |
_main in cct9D7eT.o | |
ld: symbol(s) not found for architecture x86_64 | |
collect2: ld returned 1 exit status | |
configure:18493: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| /* end confdefs.h. */ | |
| /* Define argz_create_sep to an innocuous variant, in case <limits.h> declares argz_create_sep. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define argz_create_sep innocuous_argz_create_sep | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char argz_create_sep (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef argz_create_sep | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char argz_create_sep (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub_argz_create_sep || defined __stub___argz_create_sep | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return argz_create_sep (); | |
| ; | |
| return 0; | |
| } | |
configure:18493: result: no | |
configure:18493: checking for argz_insert | |
configure:18493: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
Undefined symbols for architecture x86_64: | |
"_argz_insert", referenced from: | |
_main in cc2bMlZi.o | |
ld: symbol(s) not found for architecture x86_64 | |
collect2: ld returned 1 exit status | |
configure:18493: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| /* end confdefs.h. */ | |
| /* Define argz_insert to an innocuous variant, in case <limits.h> declares argz_insert. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define argz_insert innocuous_argz_insert | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char argz_insert (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef argz_insert | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char argz_insert (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub_argz_insert || defined __stub___argz_insert | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return argz_insert (); | |
| ; | |
| return 0; | |
| } | |
configure:18493: result: no | |
configure:18493: checking for argz_next | |
configure:18493: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
Undefined symbols for architecture x86_64: | |
"_argz_next", referenced from: | |
_main in ccEWt3hc.o | |
ld: symbol(s) not found for architecture x86_64 | |
collect2: ld returned 1 exit status | |
configure:18493: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| /* end confdefs.h. */ | |
| /* Define argz_next to an innocuous variant, in case <limits.h> declares argz_next. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define argz_next innocuous_argz_next | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char argz_next (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef argz_next | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char argz_next (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub_argz_next || defined __stub___argz_next | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return argz_next (); | |
| ; | |
| return 0; | |
| } | |
configure:18493: result: no | |
configure:18493: checking for argz_stringify | |
configure:18493: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
Undefined symbols for architecture x86_64: | |
"_argz_stringify", referenced from: | |
_main in ccp00vMI.o | |
ld: symbol(s) not found for architecture x86_64 | |
collect2: ld returned 1 exit status | |
configure:18493: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| /* end confdefs.h. */ | |
| /* Define argz_stringify to an innocuous variant, in case <limits.h> declares argz_stringify. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define argz_stringify innocuous_argz_stringify | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char argz_stringify (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef argz_stringify | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char argz_stringify (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub_argz_stringify || defined __stub___argz_stringify | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return argz_stringify (); | |
| ; | |
| return 0; | |
| } | |
configure:18493: result: no | |
configure:18558: checking whether libtool supports -dlopen/-dlpreopen | |
configure:18570: result: yes | |
configure:18602: checking for ltdl.h | |
configure:18602: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:18602: $? = 0 | |
configure:18602: result: yes | |
configure:18606: checking whether lt_dlinterface_register is declared | |
configure:18606: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:18606: $? = 0 | |
configure:18606: result: yes | |
configure:18610: checking for lt_dladvise_preload in -lltdl | |
configure:18635: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lltdl >&5 | |
configure:18635: $? = 0 | |
configure:18644: result: yes | |
configure:18739: checking where to find libltdl headers | |
configure:18741: result: | |
configure:18743: checking where to find libltdl library | |
configure:18745: result: -lltdl | |
configure:18796: checking for unistd.h | |
configure:18796: result: yes | |
configure:18796: checking for dl.h | |
configure:18796: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c:141:16: error: dl.h: No such file or directory | |
configure:18796: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| #define HAVE_PRELOADED_SYMBOLS 1 | |
| #define HAVE_LTDL 1 | |
| #define HAVE_UNISTD_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| | |
| #include <dl.h> | |
configure:18796: result: no | |
configure:18796: checking for sys/dl.h | |
configure:18796: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c:141:20: error: sys/dl.h: No such file or directory | |
configure:18796: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| #define HAVE_PRELOADED_SYMBOLS 1 | |
| #define HAVE_LTDL 1 | |
| #define HAVE_UNISTD_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| | |
| #include <sys/dl.h> | |
configure:18796: result: no | |
configure:18796: checking for dld.h | |
configure:18796: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c:141:17: error: dld.h: No such file or directory | |
configure:18796: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| #define HAVE_PRELOADED_SYMBOLS 1 | |
| #define HAVE_LTDL 1 | |
| #define HAVE_UNISTD_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| | |
| #include <dld.h> | |
configure:18796: result: no | |
configure:18796: checking for mach-o/dyld.h | |
configure:18796: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:18796: $? = 0 | |
configure:18796: result: yes | |
configure:18796: checking for dirent.h | |
configure:18796: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:18796: $? = 0 | |
configure:18796: result: yes | |
configure:18812: checking for closedir | |
configure:18812: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:18812: $? = 0 | |
configure:18812: result: yes | |
configure:18812: checking for opendir | |
configure:18812: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:18812: $? = 0 | |
configure:18812: result: yes | |
configure:18812: checking for readdir | |
configure:18812: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:18812: $? = 0 | |
configure:18812: result: yes | |
configure:18830: checking for strlcat | |
configure:18830: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:18830: $? = 0 | |
configure:18830: result: yes | |
configure:18830: checking for strlcpy | |
configure:18830: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c >&5 | |
configure:18830: $? = 0 | |
configure:18830: result: yes | |
configure:18882: checking for lt_dladvise_init in -lltdl | |
configure:18907: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib -lltdl conftest.c -lltdl >&5 | |
configure:18907: $? = 0 | |
configure:18916: result: yes | |
configure:18987: checking for X | |
configure:19095: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:19095: $? = 0 | |
configure:19126: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lX11 -lltdl >&5 | |
configure:19126: $? = 0 | |
configure:19176: result: libraries , headers | |
configure:19275: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lltdl -lX11 >&5 | |
configure:19275: $? = 0 | |
configure:19373: checking for gethostbyname | |
configure:19373: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lltdl >&5 | |
configure:19373: $? = 0 | |
configure:19373: result: yes | |
configure:19470: checking for connect | |
configure:19470: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lltdl >&5 | |
configure:19470: $? = 0 | |
configure:19470: result: yes | |
configure:19519: checking for remove | |
configure:19519: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lltdl >&5 | |
configure:19519: $? = 0 | |
configure:19519: result: yes | |
configure:19568: checking for shmat | |
configure:19568: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lltdl >&5 | |
configure:19568: $? = 0 | |
configure:19568: result: yes | |
configure:19626: checking for IceConnectionNumber in -lICE | |
configure:19651: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lICE -lltdl >&5 | |
configure:19651: $? = 0 | |
configure:19660: result: yes | |
configure:19681: checking for XRENDER | |
configure:19688: $PKG_CONFIG --exists --print-errors "xrender" | |
configure:19691: $? = 0 | |
configure:19704: $PKG_CONFIG --exists --print-errors "xrender" | |
configure:19707: $? = 0 | |
configure:19742: result: yes | |
configure:19778: checking for swig | |
configure:19794: found /usr/local/bin/swig | |
configure:19805: result: swig | |
configure:19866: checking for mcs | |
configure:19896: result: no | |
configure:20031: checking for guile | |
configure:20061: result: no | |
configure:20212: checking for java | |
configure:20228: found /usr/bin/java | |
configure:20239: result: java | |
configure:20274: checking jni.h usability | |
configure:20274: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -I/System/Library/Frameworks/JavaVM.framework/Headers conftest.c >&5 | |
configure:20274: $? = 0 | |
configure:20274: result: yes | |
configure:20274: checking jni.h presence | |
configure:20274: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -I/System/Library/Frameworks/JavaVM.framework/Headers conftest.c | |
configure:20274: $? = 0 | |
configure:20274: result: yes | |
configure:20274: checking for jni.h | |
configure:20274: result: yes | |
configure:20324: checking for lua | |
configure:20354: result: no | |
configure:20739: checking for ocaml | |
configure:20769: result: no | |
configure:20876: checking for perl | |
configure:20892: found /usr/bin/perl | |
configure:20903: result: perl | |
configure:20923: checking EXTERN.h usability | |
configure:20923: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -I/System/Library/Perl/5.12/darwin-thread-multi-2level/CORE conftest.c >&5 | |
configure:20923: $? = 0 | |
configure:20923: result: yes | |
configure:20923: checking EXTERN.h presence | |
configure:20923: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -I/System/Library/Perl/5.12/darwin-thread-multi-2level/CORE conftest.c | |
configure:20923: $? = 0 | |
configure:20923: result: yes | |
configure:20923: checking for EXTERN.h | |
configure:20923: result: yes | |
configure:20982: checking for php | |
configure:20998: found /usr/bin/php | |
configure:21009: result: php | |
configure:21030: checking php.h usability | |
configure:21030: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/Zend -I/usr/include/php/TSRM conftest.c >&5 | |
configure:21030: $? = 0 | |
configure:21030: result: yes | |
configure:21030: checking php.h presence | |
configure:21030: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/Zend -I/usr/include/php/TSRM conftest.c | |
configure:21030: $? = 0 | |
configure:21030: result: yes | |
configure:21030: checking for php.h | |
configure:21030: result: yes | |
configure:21082: checking for python | |
configure:21098: found /usr/bin/python | |
configure:21109: result: python | |
configure:21147: checking Python.h usability | |
configure:21147: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 conftest.c >&5 | |
configure:21147: $? = 0 | |
configure:21147: result: yes | |
configure:21147: checking Python.h presence | |
configure:21147: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 conftest.c | |
configure:21147: $? = 0 | |
configure:21147: result: yes | |
configure:21147: checking for Python.h | |
configure:21147: result: yes | |
configure:21778: checking for R | |
configure:21785: $PKG_CONFIG --exists --print-errors "libR" | |
Package libR was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `libR.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'libR' found | |
configure:21788: $? = 1 | |
configure:21801: $PKG_CONFIG --exists --print-errors "libR" | |
Package libR was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `libR.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'libR' found | |
configure:21804: $? = 1 | |
No package 'libR' found | |
configure:21831: result: no | |
configure:21883: checking for ruby | |
configure:21899: found /usr/bin/ruby | |
configure:21910: result: ruby | |
configure:21930: checking ruby.h usability | |
configure:21930: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0 conftest.c >&5 | |
configure:21930: $? = 0 | |
configure:21930: result: yes | |
configure:21930: checking ruby.h presence | |
configure:21930: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0 conftest.c | |
In file included from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0/ruby.h:24, | |
from conftest.c:117: | |
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0/config.h:1:1: warning: "PACKAGE_NAME" redefined | |
conftest.c:2:1: warning: this is the location of the previous definition | |
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0/config.h:2:1: warning: "PACKAGE_TARNAME" redefined | |
conftest.c:3:1: warning: this is the location of the previous definition | |
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0/config.h:3:1: warning: "PACKAGE_VERSION" redefined | |
conftest.c:4:1: warning: this is the location of the previous definition | |
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0/config.h:4:1: warning: "PACKAGE_STRING" redefined | |
conftest.c:5:1: warning: this is the location of the previous definition | |
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0/config.h:5:1: warning: "PACKAGE_BUGREPORT" redefined | |
conftest.c:6:1: warning: this is the location of the previous definition | |
configure:21930: $? = 0 | |
configure:21930: result: yes | |
configure:21930: checking for ruby.h | |
configure:21930: result: yes | |
configure:21996: checking tcl.h usability | |
configure:21996: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:21996: $? = 0 | |
configure:21996: result: yes | |
configure:21996: checking tcl.h presence | |
configure:21996: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:21996: $? = 0 | |
configure:21996: result: yes | |
configure:21996: checking for tcl.h | |
configure:21996: result: yes | |
configure:22026: result: using /usr/lib/tclConfig.sh | |
configure:22138: checking for wish8.6 | |
configure:22171: result: no | |
configure:22138: checking for wish8.5 | |
configure:22156: found /usr/bin/wish8.5 | |
configure:22168: result: /usr/bin/wish8.5 | |
configure:22212: checking tk.h usability | |
configure:22212: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:22212: $? = 0 | |
configure:22212: result: yes | |
configure:22212: checking tk.h presence | |
configure:22212: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:22212: $? = 0 | |
configure:22212: result: yes | |
configure:22212: checking for tk.h | |
configure:22212: result: yes | |
configure:22226: checking for tk.h | |
configure:22226: result: yes | |
configure:22226: checking tkInt.h usability | |
configure:22226: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c:152:19: error: tkInt.h: No such file or directory | |
configure:22226: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| #define HAVE_PRELOADED_SYMBOLS 1 | |
| #define HAVE_LTDL 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_MACH_O_DYLD_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_CLOSEDIR 1 | |
| #define HAVE_OPENDIR 1 | |
| #define HAVE_READDIR 1 | |
| #define HAVE_STRLCAT 1 | |
| #define HAVE_STRLCPY 1 | |
| #define LT_LIBEXT "a" | |
| #define ENABLE_LTDL 1 | |
| #define HAVE_LIBLTDL 1 | |
| #define HAVE_TCL 1 | |
| #define HAVE_TK_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <tkInt.h> | |
configure:22226: result: no | |
configure:22226: checking tkInt.h presence | |
configure:22226: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
conftest.c:119:19: error: tkInt.h: No such file or directory | |
configure:22226: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| #define HAVE_PRELOADED_SYMBOLS 1 | |
| #define HAVE_LTDL 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_MACH_O_DYLD_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_CLOSEDIR 1 | |
| #define HAVE_OPENDIR 1 | |
| #define HAVE_READDIR 1 | |
| #define HAVE_STRLCAT 1 | |
| #define HAVE_STRLCPY 1 | |
| #define LT_LIBEXT "a" | |
| #define ENABLE_LTDL 1 | |
| #define HAVE_LIBLTDL 1 | |
| #define HAVE_TCL 1 | |
| #define HAVE_TK_H 1 | |
| /* end confdefs.h. */ | |
| #include <tkInt.h> | |
configure:22226: result: no | |
configure:22226: checking for tkInt.h | |
configure:22226: result: no | |
configure:22256: result: using /usr/lib/tkConfig.sh | |
configure:22330: checking for connect | |
configure:22330: result: yes | |
configure:22386: checking for gethostbyname | |
configure:22386: result: yes | |
configure:22448: checking for expat-config | |
configure:22481: result: no | |
configure:22516: checking expat.h usability | |
configure:22516: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:22516: $? = 0 | |
configure:22516: result: yes | |
configure:22516: checking expat.h presence | |
configure:22516: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:22516: $? = 0 | |
configure:22516: result: yes | |
configure:22516: checking for expat.h | |
configure:22516: result: yes | |
configure:22530: checking for main in -lexpat | |
configure:22549: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lexpat -lltdl >&5 | |
configure:22549: $? = 0 | |
configure:22558: result: yes | |
configure:22615: checking IL/il.h usability | |
configure:22615: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c:154:19: error: IL/il.h: No such file or directory | |
configure:22615: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| #define HAVE_PRELOADED_SYMBOLS 1 | |
| #define HAVE_LTDL 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_MACH_O_DYLD_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_CLOSEDIR 1 | |
| #define HAVE_OPENDIR 1 | |
| #define HAVE_READDIR 1 | |
| #define HAVE_STRLCAT 1 | |
| #define HAVE_STRLCPY 1 | |
| #define LT_LIBEXT "a" | |
| #define ENABLE_LTDL 1 | |
| #define HAVE_LIBLTDL 1 | |
| #define HAVE_TCL 1 | |
| #define HAVE_TK_H 1 | |
| #define HAVE_EXPAT_H 1 | |
| #define HAVE_EXPAT 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <IL/il.h> | |
configure:22615: result: no | |
configure:22615: checking IL/il.h presence | |
configure:22615: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
conftest.c:121:19: error: IL/il.h: No such file or directory | |
configure:22615: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| #define HAVE_PRELOADED_SYMBOLS 1 | |
| #define HAVE_LTDL 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_MACH_O_DYLD_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_CLOSEDIR 1 | |
| #define HAVE_OPENDIR 1 | |
| #define HAVE_READDIR 1 | |
| #define HAVE_STRLCAT 1 | |
| #define HAVE_STRLCPY 1 | |
| #define LT_LIBEXT "a" | |
| #define ENABLE_LTDL 1 | |
| #define HAVE_LIBLTDL 1 | |
| #define HAVE_TCL 1 | |
| #define HAVE_TK_H 1 | |
| #define HAVE_EXPAT_H 1 | |
| #define HAVE_EXPAT 1 | |
| /* end confdefs.h. */ | |
| #include <IL/il.h> | |
configure:22615: result: no | |
configure:22615: checking for IL/il.h | |
configure:22615: result: no | |
configure:22623: WARNING: Optional DevIL library not available - missing headers | |
configure:22629: checking for main in -lIL | |
configure:22648: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lIL -lltdl >&5 | |
ld: library not found for -lIL | |
collect2: ld returned 1 exit status | |
configure:22648: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| #define HAVE_PRELOADED_SYMBOLS 1 | |
| #define HAVE_LTDL 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_MACH_O_DYLD_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_CLOSEDIR 1 | |
| #define HAVE_OPENDIR 1 | |
| #define HAVE_READDIR 1 | |
| #define HAVE_STRLCAT 1 | |
| #define HAVE_STRLCPY 1 | |
| #define LT_LIBEXT "a" | |
| #define ENABLE_LTDL 1 | |
| #define HAVE_LIBLTDL 1 | |
| #define HAVE_TCL 1 | |
| #define HAVE_TK_H 1 | |
| #define HAVE_EXPAT_H 1 | |
| #define HAVE_EXPAT 1 | |
| /* end confdefs.h. */ | |
| | |
| | |
| int | |
| main () | |
| { | |
| return main (); | |
| ; | |
| return 0; | |
| } | |
configure:22657: result: no | |
configure:22663: WARNING: Optional DevIL library not available | |
configure:22712: checking for main in -lXpm | |
configure:22731: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib -lSM -lICE conftest.c -lXpm -lXmu -lXt -lX11 -lXext -lltdl >&5 | |
configure:22731: $? = 0 | |
configure:22740: result: yes | |
configure:22778: checking X11/Intrinsic.h usability | |
configure:22778: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:22778: $? = 0 | |
configure:22778: result: yes | |
configure:22778: checking X11/Intrinsic.h presence | |
configure:22778: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:22778: $? = 0 | |
configure:22778: result: yes | |
configure:22778: checking for X11/Intrinsic.h | |
configure:22778: result: yes | |
configure:22791: checking for X11/Xaw/Text.h | |
configure:22791: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:22791: $? = 0 | |
configure:22791: result: yes | |
configure:22811: checking for main in -lXaw | |
configure:22830: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib -lXpm -lSM -lICE conftest.c -lXaw -lXmu -lXt -lX11 -lXext -lltdl >&5 | |
configure:22830: $? = 0 | |
configure:22839: result: yes | |
configure:22888: checking zlib.h usability | |
configure:22888: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:22888: $? = 0 | |
configure:22888: result: yes | |
configure:22888: checking zlib.h presence | |
configure:22888: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:22888: $? = 0 | |
configure:22888: result: yes | |
configure:22888: checking for zlib.h | |
configure:22888: result: yes | |
configure:22890: checking for main in -lz | |
configure:22909: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lz -lltdl >&5 | |
configure:22909: $? = 0 | |
configure:22918: result: yes | |
configure:22941: checking for deflateBound | |
configure:22941: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib -lz conftest.c -lltdl >&5 | |
configure:22941: $? = 0 | |
configure:22941: result: yes | |
configure:22970: checking for RSVG | |
configure:22977: $PKG_CONFIG --exists --print-errors "librsvg-2.0" | |
Package librsvg-2.0 was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `librsvg-2.0.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'librsvg-2.0' found | |
configure:22980: $? = 1 | |
configure:22993: $PKG_CONFIG --exists --print-errors "librsvg-2.0" | |
Package librsvg-2.0 was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `librsvg-2.0.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'librsvg-2.0' found | |
configure:22996: $? = 1 | |
No package 'librsvg-2.0' found | |
configure:23023: result: no | |
configure:23074: checking ghostscript/iapi.h usability | |
configure:23074: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c:159:30: error: ghostscript/iapi.h: No such file or directory | |
configure:23074: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| #define HAVE_PRELOADED_SYMBOLS 1 | |
| #define HAVE_LTDL 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_MACH_O_DYLD_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_CLOSEDIR 1 | |
| #define HAVE_OPENDIR 1 | |
| #define HAVE_READDIR 1 | |
| #define HAVE_STRLCAT 1 | |
| #define HAVE_STRLCPY 1 | |
| #define LT_LIBEXT "a" | |
| #define ENABLE_LTDL 1 | |
| #define HAVE_LIBLTDL 1 | |
| #define HAVE_TCL 1 | |
| #define HAVE_TK_H 1 | |
| #define HAVE_EXPAT_H 1 | |
| #define HAVE_EXPAT 1 | |
| #define HAVE_LIBXPMFORLEFTY 1 | |
| #define HAVE_X11_INTRINSIC_H 1 | |
| #define HAVE_X11_XAW_TEXT_H 1 | |
| #define HAVE_LIBZ 1 | |
| #define HAVE_DEFLATEBOUND 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <ghostscript/iapi.h> | |
configure:23074: result: no | |
configure:23074: checking ghostscript/iapi.h presence | |
configure:23074: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
conftest.c:126:30: error: ghostscript/iapi.h: No such file or directory | |
configure:23074: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| #define HAVE_PRELOADED_SYMBOLS 1 | |
| #define HAVE_LTDL 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_MACH_O_DYLD_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_CLOSEDIR 1 | |
| #define HAVE_OPENDIR 1 | |
| #define HAVE_READDIR 1 | |
| #define HAVE_STRLCAT 1 | |
| #define HAVE_STRLCPY 1 | |
| #define LT_LIBEXT "a" | |
| #define ENABLE_LTDL 1 | |
| #define HAVE_LIBLTDL 1 | |
| #define HAVE_TCL 1 | |
| #define HAVE_TK_H 1 | |
| #define HAVE_EXPAT_H 1 | |
| #define HAVE_EXPAT 1 | |
| #define HAVE_LIBXPMFORLEFTY 1 | |
| #define HAVE_X11_INTRINSIC_H 1 | |
| #define HAVE_X11_XAW_TEXT_H 1 | |
| #define HAVE_LIBZ 1 | |
| #define HAVE_DEFLATEBOUND 1 | |
| /* end confdefs.h. */ | |
| #include <ghostscript/iapi.h> | |
configure:23074: result: no | |
configure:23074: checking for ghostscript/iapi.h | |
configure:23074: result: no | |
configure:23403: checking for LASI | |
configure:23410: $PKG_CONFIG --exists --print-errors "lasi" | |
Package lasi was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `lasi.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'lasi' found | |
configure:23413: $? = 1 | |
configure:23426: $PKG_CONFIG --exists --print-errors "lasi" | |
Package lasi was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `lasi.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'lasi' found | |
configure:23429: $? = 1 | |
No package 'lasi' found | |
configure:23456: result: no | |
configure:23609: checking for FREETYPE2 | |
configure:23616: $PKG_CONFIG --exists --print-errors "freetype2" | |
configure:23619: $? = 0 | |
configure:23632: $PKG_CONFIG --exists --print-errors "freetype2" | |
configure:23635: $? = 0 | |
configure:23676: result: yes | |
configure:23819: checking for FONTCONFIG | |
configure:23826: $PKG_CONFIG --exists --print-errors "fontconfig" | |
configure:23829: $? = 0 | |
configure:23842: $PKG_CONFIG --exists --print-errors "fontconfig" | |
configure:23845: $? = 0 | |
configure:23886: result: yes | |
configure:24029: checking for GDK_PIXBUF | |
configure:24036: $PKG_CONFIG --exists --print-errors "gdk-pixbuf-2.0" | |
Package gdk-pixbuf-2.0 was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `gdk-pixbuf-2.0.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'gdk-pixbuf-2.0' found | |
configure:24039: $? = 1 | |
configure:24052: $PKG_CONFIG --exists --print-errors "gdk-pixbuf-2.0" | |
Package gdk-pixbuf-2.0 was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `gdk-pixbuf-2.0.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'gdk-pixbuf-2.0' found | |
configure:24055: $? = 1 | |
No package 'gdk-pixbuf-2.0' found | |
configure:24082: result: no | |
configure:24132: checking for GTK | |
configure:24139: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.7.0" | |
Package gtk+-2.0 was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `gtk+-2.0.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'gtk+-2.0' found | |
configure:24142: $? = 1 | |
configure:24155: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.7.0" | |
Package gtk+-2.0 was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `gtk+-2.0.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'gtk+-2.0' found | |
configure:24158: $? = 1 | |
No package 'gtk+-2.0' found | |
configure:24185: result: no | |
configure:24235: checking for GTKGL | |
configure:24242: $PKG_CONFIG --exists --print-errors "gtkgl-2.0" | |
Package gtkgl-2.0 was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `gtkgl-2.0.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'gtkgl-2.0' found | |
configure:24245: $? = 1 | |
configure:24258: $PKG_CONFIG --exists --print-errors "gtkgl-2.0" | |
Package gtkgl-2.0 was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `gtkgl-2.0.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'gtkgl-2.0' found | |
configure:24261: $? = 1 | |
No package 'gtkgl-2.0' found | |
configure:24288: result: no | |
configure:24338: checking for GTKGLEXT | |
configure:24345: $PKG_CONFIG --exists --print-errors "gtkglext-1.0" | |
Package gtkglext-1.0 was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `gtkglext-1.0.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'gtkglext-1.0' found | |
configure:24348: $? = 1 | |
configure:24361: $PKG_CONFIG --exists --print-errors "gtkglext-1.0" | |
Package gtkglext-1.0 was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `gtkglext-1.0.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'gtkglext-1.0' found | |
configure:24364: $? = 1 | |
No package 'gtkglext-1.0' found | |
configure:24391: result: no | |
configure:24441: checking for GTS | |
configure:24448: $PKG_CONFIG --exists --print-errors "gts" | |
Package gts was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `gts.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'gts' found | |
configure:24451: $? = 1 | |
configure:24464: $PKG_CONFIG --exists --print-errors "gts" | |
Package gts was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `gts.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'gts' found | |
configure:24467: $? = 1 | |
No package 'gts' found | |
configure:24494: result: no | |
configure:24544: checking for GLADE | |
configure:24551: $PKG_CONFIG --exists --print-errors "libglade-2.0" | |
Package libglade-2.0 was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `libglade-2.0.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'libglade-2.0' found | |
configure:24554: $? = 1 | |
configure:24567: $PKG_CONFIG --exists --print-errors "libglade-2.0" | |
Package libglade-2.0 was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `libglade-2.0.pc' | |
to the PKG_CONFIG_PATH environment variable | |
No package 'libglade-2.0' found | |
configure:24570: $? = 1 | |
No package 'libglade-2.0' found | |
configure:24597: result: no | |
configure:25078: checking for gdlib-config | |
configure:25111: result: no | |
configure:25218: WARNING: No gdlib-config found. | |
configure:25323: WARNING: Using internal libgd source. | |
configure:25406: checking GL/glut.h usability | |
configure:25406: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:25406: $? = 0 | |
configure:25406: result: yes | |
configure:25406: checking GL/glut.h presence | |
configure:25406: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:25406: $? = 0 | |
configure:25406: result: yes | |
configure:25406: checking for GL/glut.h | |
configure:25406: result: yes | |
configure:25408: checking for main in -lglut | |
configure:25427: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lglut -lltdl >&5 | |
configure:25427: $? = 0 | |
configure:25436: result: yes | |
configure:25514: checking for ld used by GCC | |
configure:25577: result: /usr/bin/llvm-gcc | |
configure:25584: checking if the linker (/usr/bin/llvm-gcc) is GNU ld | |
configure:25596: result: no | |
configure:25602: checking for shared library run path origin | |
configure:25615: result: done | |
configure:26047: checking for iconv | |
configure:26069: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lltdl >&5 | |
Undefined symbols for architecture x86_64: | |
"_iconv_open", referenced from: | |
_main in cc2HeYJn.o | |
"_iconv", referenced from: | |
_main in cc2HeYJn.o | |
"_iconv_close", referenced from: | |
_main in cc2HeYJn.o | |
ld: symbol(s) not found for architecture x86_64 | |
collect2: ld returned 1 exit status | |
configure:26069: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| #define HAVE_PRELOADED_SYMBOLS 1 | |
| #define HAVE_LTDL 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_MACH_O_DYLD_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_CLOSEDIR 1 | |
| #define HAVE_OPENDIR 1 | |
| #define HAVE_READDIR 1 | |
| #define HAVE_STRLCAT 1 | |
| #define HAVE_STRLCPY 1 | |
| #define LT_LIBEXT "a" | |
| #define ENABLE_LTDL 1 | |
| #define HAVE_LIBLTDL 1 | |
| #define HAVE_TCL 1 | |
| #define HAVE_TK_H 1 | |
| #define HAVE_EXPAT_H 1 | |
| #define HAVE_EXPAT 1 | |
| #define HAVE_LIBXPMFORLEFTY 1 | |
| #define HAVE_X11_INTRINSIC_H 1 | |
| #define HAVE_X11_XAW_TEXT_H 1 | |
| #define HAVE_LIBZ 1 | |
| #define HAVE_DEFLATEBOUND 1 | |
| #define HAVE_FREETYPE2 1 | |
| #define HAVE_FONTCONFIG 1 | |
| #define HAVE_QUARTZ 1 | |
| #define HAVE_GD_GIF 1 | |
| #define HAVE_LIBGD 1 | |
| #define HAVE_GD_FREETYPE 1 | |
| #define HAVE_GD_FONTCONFIG 1 | |
| #define HAVE_GLUT 1 | |
| /* end confdefs.h. */ | |
| #include <stdlib.h> | |
| #include <iconv.h> | |
| int | |
| main () | |
| { | |
| iconv_t cd = iconv_open("",""); | |
| iconv(cd,NULL,NULL,NULL,NULL); | |
| iconv_close(cd); | |
| ; | |
| return 0; | |
| } | |
configure:26091: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lltdl -liconv >&5 | |
configure:26091: $? = 0 | |
configure:26101: result: yes | |
configure:26109: checking how to link with libiconv | |
configure:26111: result: -liconv | |
configure:26122: checking for iconv declaration | |
configure:26151: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:26151: $? = 0 | |
configure:26162: result: install-shextern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); | |
configure:26180: checking iconv.h usability | |
configure:26180: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:26180: $? = 0 | |
configure:26180: result: yes | |
configure:26180: checking iconv.h presence | |
configure:26180: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:26180: $? = 0 | |
configure:26180: result: yes | |
configure:26180: checking for iconv.h | |
configure:26180: result: yes | |
configure:26185: checking whether iconv.h defines iconv_t | |
configure:26194: result: yes | |
configure:26234: checking for libpng-config | |
configure:26252: found /usr/X11/bin/libpng-config | |
configure:26264: result: /usr/X11/bin/libpng-config | |
configure:26295: checking png.h usability | |
configure:26295: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -I/usr/X11/include/libpng15 conftest.c >&5 | |
configure:26295: $? = 0 | |
configure:26295: result: yes | |
configure:26295: checking png.h presence | |
configure:26295: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -I/usr/X11/include/libpng15 conftest.c | |
configure:26295: $? = 0 | |
configure:26295: result: yes | |
configure:26295: checking for png.h | |
configure:26295: result: yes | |
configure:26297: checking for main in -lpng | |
configure:26316: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -I/usr/X11/include/libpng15 -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib -L/usr/X11/lib -lz conftest.c -lpng -lz -lm -lltdl >&5 | |
configure:26316: $? = 0 | |
configure:26325: result: yes | |
configure:26402: checking jpeglib.h usability | |
configure:26402: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:26402: $? = 0 | |
configure:26402: result: yes | |
configure:26402: checking jpeglib.h presence | |
configure:26402: /usr/bin/llvm-gcc -E -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c | |
configure:26402: $? = 0 | |
configure:26402: result: yes | |
configure:26402: checking for jpeglib.h | |
configure:26402: result: yes | |
configure:26404: checking for main in -ljpeg | |
configure:26423: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -ljpeg -lltdl >&5 | |
configure:26423: $? = 0 | |
configure:26432: result: yes | |
configure:26751: checking if have working sincos() | |
configure:26778: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lltdl -lm >&5 | |
Undefined symbols for architecture x86_64: | |
"_sincos", referenced from: | |
_main in ccCl4jv7.o | |
ld: symbol(s) not found for architecture x86_64 | |
collect2: ld returned 1 exit status | |
configure:26778: $? = 1 | |
configure: program exited with status 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| #define HAVE_PRELOADED_SYMBOLS 1 | |
| #define HAVE_LTDL 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_MACH_O_DYLD_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_CLOSEDIR 1 | |
| #define HAVE_OPENDIR 1 | |
| #define HAVE_READDIR 1 | |
| #define HAVE_STRLCAT 1 | |
| #define HAVE_STRLCPY 1 | |
| #define LT_LIBEXT "a" | |
| #define ENABLE_LTDL 1 | |
| #define HAVE_LIBLTDL 1 | |
| #define HAVE_TCL 1 | |
| #define HAVE_TK_H 1 | |
| #define HAVE_EXPAT_H 1 | |
| #define HAVE_EXPAT 1 | |
| #define HAVE_LIBXPMFORLEFTY 1 | |
| #define HAVE_X11_INTRINSIC_H 1 | |
| #define HAVE_X11_XAW_TEXT_H 1 | |
| #define HAVE_LIBZ 1 | |
| #define HAVE_DEFLATEBOUND 1 | |
| #define HAVE_FREETYPE2 1 | |
| #define HAVE_FONTCONFIG 1 | |
| #define HAVE_QUARTZ 1 | |
| #define HAVE_GD_GIF 1 | |
| #define HAVE_LIBGD 1 | |
| #define HAVE_GD_FREETYPE 1 | |
| #define HAVE_GD_FONTCONFIG 1 | |
| #define HAVE_GLUT 1 | |
| #define HAVE_ICONV 1 | |
| #define ICONV_CONST | |
| #define HAVE_ICONV_H 1 | |
| #define HAVE_ICONV_T_DEF 1 | |
| #define HAVE_GD_PNG 1 | |
| #define HAVE_LIBPNG 1 | |
| #define HAVE_GD_JPEG 1 | |
| #define HAVE_LIBJPEG 1 | |
| #define SFDP 1 | |
| #define ORTHO 1 | |
| #define DIGCOLA 1 | |
| /* end confdefs.h. */ | |
| | |
| #include <stdio.h> | |
| #include <assert.h> | |
| #define PI 3.14159265358979323846 | |
| extern void sincos(double x, double *s, double *c); | |
| int main () { | |
| double sinx=0.0, cosx=1.0; | |
| int i; | |
| /* try to convince clever compilers not to optize this away! */ | |
| for (i=2; i<4; i++) {sincos(PI/(double)i,&sinx,&cosx);} | |
| assert(sinx>0.8660253); | |
| assert(sinx<0.8660255); | |
| assert(cosx<0.5000001); | |
| assert(cosx>0.4999999); | |
| return 0; | |
| } | |
| | |
configure:26788: result: no | |
configure:26799: checking if FILE struct contains _cnt | |
configure:26816: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:152: error: 'FILE' has no member named '_cnt' | |
configure:26816: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| #define HAVE_PRELOADED_SYMBOLS 1 | |
| #define HAVE_LTDL 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_MACH_O_DYLD_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_CLOSEDIR 1 | |
| #define HAVE_OPENDIR 1 | |
| #define HAVE_READDIR 1 | |
| #define HAVE_STRLCAT 1 | |
| #define HAVE_STRLCPY 1 | |
| #define LT_LIBEXT "a" | |
| #define ENABLE_LTDL 1 | |
| #define HAVE_LIBLTDL 1 | |
| #define HAVE_TCL 1 | |
| #define HAVE_TK_H 1 | |
| #define HAVE_EXPAT_H 1 | |
| #define HAVE_EXPAT 1 | |
| #define HAVE_LIBXPMFORLEFTY 1 | |
| #define HAVE_X11_INTRINSIC_H 1 | |
| #define HAVE_X11_XAW_TEXT_H 1 | |
| #define HAVE_LIBZ 1 | |
| #define HAVE_DEFLATEBOUND 1 | |
| #define HAVE_FREETYPE2 1 | |
| #define HAVE_FONTCONFIG 1 | |
| #define HAVE_QUARTZ 1 | |
| #define HAVE_GD_GIF 1 | |
| #define HAVE_LIBGD 1 | |
| #define HAVE_GD_FREETYPE 1 | |
| #define HAVE_GD_FONTCONFIG 1 | |
| #define HAVE_GLUT 1 | |
| #define HAVE_ICONV 1 | |
| #define ICONV_CONST | |
| #define HAVE_ICONV_H 1 | |
| #define HAVE_ICONV_T_DEF 1 | |
| #define HAVE_GD_PNG 1 | |
| #define HAVE_LIBPNG 1 | |
| #define HAVE_GD_JPEG 1 | |
| #define HAVE_LIBJPEG 1 | |
| #define SFDP 1 | |
| #define ORTHO 1 | |
| #define DIGCOLA 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| | |
| int | |
| main () | |
| { | |
| FILE *f; | |
| int i; | |
| i = f->_cnt; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:26826: result: no | |
configure:26834: checking if FILE struct contains _r | |
configure:26851: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
configure:26851: $? = 0 | |
configure:26852: result: yes | |
configure:26869: checking if FILE struct contains _next | |
configure:26886: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:153: error: 'FILE' has no member named '_next' | |
configure:26886: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| #define HAVE_PRELOADED_SYMBOLS 1 | |
| #define HAVE_LTDL 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_MACH_O_DYLD_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_CLOSEDIR 1 | |
| #define HAVE_OPENDIR 1 | |
| #define HAVE_READDIR 1 | |
| #define HAVE_STRLCAT 1 | |
| #define HAVE_STRLCPY 1 | |
| #define LT_LIBEXT "a" | |
| #define ENABLE_LTDL 1 | |
| #define HAVE_LIBLTDL 1 | |
| #define HAVE_TCL 1 | |
| #define HAVE_TK_H 1 | |
| #define HAVE_EXPAT_H 1 | |
| #define HAVE_EXPAT 1 | |
| #define HAVE_LIBXPMFORLEFTY 1 | |
| #define HAVE_X11_INTRINSIC_H 1 | |
| #define HAVE_X11_XAW_TEXT_H 1 | |
| #define HAVE_LIBZ 1 | |
| #define HAVE_DEFLATEBOUND 1 | |
| #define HAVE_FREETYPE2 1 | |
| #define HAVE_FONTCONFIG 1 | |
| #define HAVE_QUARTZ 1 | |
| #define HAVE_GD_GIF 1 | |
| #define HAVE_LIBGD 1 | |
| #define HAVE_GD_FREETYPE 1 | |
| #define HAVE_GD_FONTCONFIG 1 | |
| #define HAVE_GLUT 1 | |
| #define HAVE_ICONV 1 | |
| #define ICONV_CONST | |
| #define HAVE_ICONV_H 1 | |
| #define HAVE_ICONV_T_DEF 1 | |
| #define HAVE_GD_PNG 1 | |
| #define HAVE_LIBPNG 1 | |
| #define HAVE_GD_JPEG 1 | |
| #define HAVE_LIBJPEG 1 | |
| #define SFDP 1 | |
| #define ORTHO 1 | |
| #define DIGCOLA 1 | |
| #define HAVE_FILE_R 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| | |
| int | |
| main () | |
| { | |
| FILE *f; | |
| int i; | |
| i = f->_next; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:26896: result: no | |
configure:26904: checking if FILE struct contains _IO_read_end | |
configure:26921: /usr/bin/llvm-gcc -c -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:153: error: 'FILE' has no member named '_IO_read_end' | |
configure:26921: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define PACKAGE_NAME "graphviz" | |
| #define PACKAGE_TARNAME "graphviz" | |
| #define PACKAGE_VERSION "2.28.0" | |
| #define PACKAGE_STRING "graphviz 2.28.0" | |
| #define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
| #define PACKAGE_URL "" | |
| #define GVPLUGIN_CONFIG_FILE "config6" | |
| #define GVPLUGIN_VERSION 6 | |
| #define DARWIN 1 | |
| #define DARWIN_DYLIB "" | |
| #define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
| #define PATHSEPARATOR ":" | |
| #define NO_POSTSCRIPT_ALIAS 1 | |
| #define DEFAULT_DPI 96 | |
| #define BROWSER "open" | |
| #define PACKAGE "graphviz" | |
| #define VERSION "2.28.0" | |
| #define YYTEXT_POINTER 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_MEMORY_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_STDARG_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDDEF_H 1 | |
| #define HAVE_STDLIB_H 1 | |
| #define HAVE_STDINT_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_SEARCH_H 1 | |
| #define HAVE_GETOPT_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_FLOAT_H 1 | |
| #define HAVE_LIMITS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_TIME_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_FENV_H 1 | |
| #define HAVE_STRING_H 1 | |
| #define HAVE_STRINGS_H 1 | |
| #define HAVE_INTTYPES_H 1 | |
| #define HAVE_SETJMP_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_MMAN_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_CRT_EXTERNS_H 1 | |
| #define TIME_WITH_SYS_TIME 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE__BOOL 1 | |
| #define HAVE_FESETENV 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ALLOCA 1 | |
| #define HAVE_LRAND48 1 | |
| #define HAVE_DRAND48 1 | |
| #define HAVE_SRAND48 1 | |
| #define HAVE_SETMODE 1 | |
| #define HAVE_SETENV 1 | |
| #define HAVE_GETENV 1 | |
| #define HAVE_GETRUSAGE 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_CBRT 1 | |
| #define HAVE_VSNPRINTF 1 | |
| #define HAVE_STRTOUL 1 | |
| #define HAVE_STRTOLL 1 | |
| #define HAVE_STRTOULL 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_MEMSET 1 | |
| #define HAVE_NL_LANGINFO 1 | |
| #define HAVE_POW 1 | |
| #define HAVE_SQRT 1 | |
| #define HAVE_STRCHR 1 | |
| #define HAVE_STRDUP 1 | |
| #define HAVE_STRERROR 1 | |
| #define HAVE_STRSTR 1 | |
| #define HAVE__NSGETENVIRON 1 | |
| #define HAVE_STRCASECMP 1 | |
| #define HAVE_STRNCASECMP 1 | |
| #define HAVE_STRCASESTR 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define LT_OBJDIR ".libs/" | |
| #define LT_MODULE_EXT ".so" | |
| #define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
| #define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_DLERROR 1 | |
| #define HAVE_LIBDLLOADER 1 | |
| #define error_t int | |
| #define __error_t_defined 1 | |
| #define HAVE_PRELOADED_SYMBOLS 1 | |
| #define HAVE_LTDL 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_MACH_O_DYLD_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_CLOSEDIR 1 | |
| #define HAVE_OPENDIR 1 | |
| #define HAVE_READDIR 1 | |
| #define HAVE_STRLCAT 1 | |
| #define HAVE_STRLCPY 1 | |
| #define LT_LIBEXT "a" | |
| #define ENABLE_LTDL 1 | |
| #define HAVE_LIBLTDL 1 | |
| #define HAVE_TCL 1 | |
| #define HAVE_TK_H 1 | |
| #define HAVE_EXPAT_H 1 | |
| #define HAVE_EXPAT 1 | |
| #define HAVE_LIBXPMFORLEFTY 1 | |
| #define HAVE_X11_INTRINSIC_H 1 | |
| #define HAVE_X11_XAW_TEXT_H 1 | |
| #define HAVE_LIBZ 1 | |
| #define HAVE_DEFLATEBOUND 1 | |
| #define HAVE_FREETYPE2 1 | |
| #define HAVE_FONTCONFIG 1 | |
| #define HAVE_QUARTZ 1 | |
| #define HAVE_GD_GIF 1 | |
| #define HAVE_LIBGD 1 | |
| #define HAVE_GD_FREETYPE 1 | |
| #define HAVE_GD_FONTCONFIG 1 | |
| #define HAVE_GLUT 1 | |
| #define HAVE_ICONV 1 | |
| #define ICONV_CONST | |
| #define HAVE_ICONV_H 1 | |
| #define HAVE_ICONV_T_DEF 1 | |
| #define HAVE_GD_PNG 1 | |
| #define HAVE_LIBPNG 1 | |
| #define HAVE_GD_JPEG 1 | |
| #define HAVE_LIBJPEG 1 | |
| #define SFDP 1 | |
| #define ORTHO 1 | |
| #define DIGCOLA 1 | |
| #define HAVE_FILE_R 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| | |
| int | |
| main () | |
| { | |
| FILE *f; | |
| int i; | |
| i = f->_IO_read_end; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:26931: result: no | |
configure:26939: checking if errno externs are declared | |
configure:26955: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lltdl >&5 | |
configure:26955: $? = 0 | |
configure:26956: result: yes | |
configure:26974: checking if getopt externs are declared | |
configure:26993: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lltdl >&5 | |
configure:26993: $? = 0 | |
configure:26994: result: yes | |
configure:27012: checking if intptr_t is declared | |
configure:27036: /usr/bin/llvm-gcc -o conftest -Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall -I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include -L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib conftest.c -lltdl >&5 | |
configure:27036: $? = 0 | |
configure:27037: result: yes | |
configure:27055: checking if assert needs __eprintf | |
configure:27070: result: no | |
configure:27464: creating ./config.status | |
## ---------------------- ## | |
## Running config.status. ## | |
## ---------------------- ## | |
This file was extended by graphviz config.status 2.28.0, which was | |
generated by GNU Autoconf 2.65. Invocation command line was | |
CONFIG_FILES = | |
CONFIG_HEADERS = | |
CONFIG_LINKS = | |
CONFIG_COMMANDS = | |
$ ./config.status | |
on lolo.local | |
config.status:1732: creating Makefile | |
config.status:1732: creating debian/changelog | |
config.status:1732: creating doc/Makefile | |
config.status:1732: creating doc/info/Makefile | |
config.status:1732: creating doc/schema/Makefile | |
config.status:1732: creating contrib/Makefile | |
config.status:1732: creating contrib/prune/Makefile | |
config.status:1732: creating contrib/diffimg/Makefile | |
config.status:1732: creating graphs/Makefile | |
config.status:1732: creating graphs/directed/Makefile | |
config.status:1732: creating graphs/undirected/Makefile | |
config.status:1732: creating lib/Makefile | |
config.status:1732: creating lib/cdt/Makefile | |
config.status:1732: creating lib/cdt/libcdt.pc | |
config.status:1732: creating lib/graph/Makefile | |
config.status:1732: creating lib/graph/libgraph.pc | |
config.status:1732: creating lib/cgraph/Makefile | |
config.status:1732: creating lib/cgraph/libcgraph.pc | |
config.status:1732: creating lib/gd/Makefile | |
config.status:1732: creating lib/rbtree/Makefile | |
config.status:1732: creating lib/pathplan/Makefile | |
config.status:1732: creating lib/pathplan/libpathplan.pc | |
config.status:1732: creating lib/ast/Makefile | |
config.status:1732: creating lib/sfio/Makefile | |
config.status:1732: creating lib/sfio/Sfio_f/Makefile | |
config.status:1732: creating lib/vmalloc/Makefile | |
config.status:1732: creating lib/dotgen/Makefile | |
config.status:1732: creating lib/dotgen2/Makefile | |
config.status:1732: creating lib/neatogen/Makefile | |
config.status:1732: creating lib/fdpgen/Makefile | |
config.status:1732: creating lib/sparse/Makefile | |
config.status:1732: creating lib/sfdpgen/Makefile | |
config.status:1732: creating lib/osage/Makefile | |
config.status:1732: creating lib/gvpr/Makefile | |
config.status:1732: creating lib/gvpr/libgvpr.pc | |
config.status:1732: creating lib/circogen/Makefile | |
config.status:1732: creating lib/twopigen/Makefile | |
config.status:1732: creating lib/patchwork/Makefile | |
config.status:1732: creating lib/pack/Makefile | |
config.status:1732: creating lib/ortho/Makefile | |
config.status:1732: creating lib/expr/Makefile | |
config.status:1732: creating lib/expr/libexpr.pc | |
config.status:1732: creating lib/common/Makefile | |
config.status:1732: creating lib/ingraphs/Makefile | |
config.status:1732: creating lib/vpsc/Makefile | |
config.status:1732: creating lib/gvc/Makefile | |
config.status:1732: creating lib/gvc/libgvc.pc | |
config.status:1732: creating lib/xdot/Makefile | |
config.status:1732: creating lib/xdot/libxdot.pc | |
config.status:1732: creating lib/topfish/Makefile | |
config.status:1732: creating lib/glcomp/Makefile | |
config.status:1732: creating macosx/Info.plist | |
config.status:1732: creating macosx/build/graphviz.pmdoc/01local.xml | |
config.status:1732: creating macosx/build/graphviz.pmdoc/02graphviz.xml | |
config.status:1732: creating windows/build/graphviz.wxs | |
config.status:1732: creating windows/Properties/AssemblyInfo.cs | |
config.status:1732: creating plugin/Makefile | |
config.status:1732: creating plugin/core/Makefile | |
config.status:1732: creating plugin/devil/Makefile | |
config.status:1732: creating plugin/gd/Makefile | |
config.status:1732: creating plugin/gdk_pixbuf/Makefile | |
config.status:1732: creating plugin/gdiplus/Makefile | |
config.status:1732: creating plugin/glitz/Makefile | |
config.status:1732: creating plugin/gs/Makefile | |
config.status:1732: creating plugin/gtk/Makefile | |
config.status:1732: creating plugin/lasi/Makefile | |
config.status:1732: creating plugin/ming/Makefile | |
config.status:1732: creating plugin/pango/Makefile | |
config.status:1732: creating plugin/quartz/Makefile | |
config.status:1732: creating plugin/rsvg/Makefile | |
config.status:1732: creating plugin/visio/Makefile | |
config.status:1732: creating plugin/xlib/Makefile | |
config.status:1732: creating plugin/dot_layout/Makefile | |
config.status:1732: creating plugin/neato_layout/Makefile | |
config.status:1732: creating cmd/Makefile | |
config.status:1732: creating cmd/dot/Makefile | |
config.status:1732: creating cmd/tools/Makefile | |
config.status:1732: creating cmd/gvpr/Makefile | |
config.status:1732: creating cmd/lefty/ws/x11/libfilereq/Makefile | |
config.status:1732: creating cmd/lefty/ws/x11/Makefile | |
config.status:1732: creating cmd/lefty/ws/mswin32/Makefile | |
config.status:1732: creating cmd/lefty/ws/Makefile | |
config.status:1732: creating cmd/lefty/os/unix/Makefile | |
config.status:1732: creating cmd/lefty/os/mswin32/Makefile | |
config.status:1732: creating cmd/lefty/os/Makefile | |
config.status:1732: creating cmd/lefty/dot2l/Makefile | |
config.status:1732: creating cmd/lefty/examples/Makefile | |
config.status:1732: creating cmd/lefty/Makefile | |
config.status:1732: creating cmd/lneato/Makefile | |
config.status:1732: creating cmd/dotty/Makefile | |
config.status:1732: creating cmd/smyrna/Makefile | |
config.status:1732: creating cmd/gvmap/Makefile | |
config.status:1732: creating cmd/gvedit/Makefile | |
config.status:1732: creating cmd/gvedit/gvedit.pro | |
config.status:1732: creating cmd/gvedit/ui/Makefile | |
config.status:1732: creating cmd/gvedit/images/Makefile | |
config.status:1732: creating tclpkg/Makefile | |
config.status:1732: creating tclpkg/tclstubs/Makefile | |
config.status:1732: creating tclpkg/tkstubs/Makefile | |
config.status:1732: creating tclpkg/tclhandle/Makefile | |
config.status:1732: creating tclpkg/gdtclft/Makefile | |
config.status:1732: creating tclpkg/gdtclft/demo/Makefile | |
config.status:1732: creating tclpkg/tcldot/Makefile | |
config.status:1732: creating tclpkg/tcldot/demo/Makefile | |
config.status:1732: creating tclpkg/tclpathplan/Makefile | |
config.status:1732: creating tclpkg/tclpathplan/demo/Makefile | |
config.status:1732: creating tclpkg/tclpathplan/demo/pathplan_data/Makefile | |
config.status:1732: creating tclpkg/tkspline/Makefile | |
config.status:1732: creating tclpkg/tkspline/demo/Makefile | |
config.status:1732: creating tclpkg/gv/Makefile | |
config.status:1732: creating tclpkg/gv/demo/Makefile | |
config.status:1732: creating tclpkg/gv/META.gv | |
config.status:1732: creating rtest/Makefile | |
config.status:1732: creating share/Makefile | |
config.status:1732: creating share/examples/Makefile | |
config.status:1732: creating share/gui/Makefile | |
config.status:1732: creating graphviz.spec | |
config.status:1732: creating Doxyfile | |
config.status:1732: creating config.h | |
config.status:1952: executing depfiles commands | |
config.status:1952: executing libtool commands | |
configure:30113: === configuring in libltdl (/private/tmp/homebrew-graphviz-2.28.0-XSw4/graphviz-2.28.0/libltdl) | |
configure:30176: running /bin/sh ./configure --disable-option-checking '--prefix=/usr/local/Cellar/graphviz/2.28.0' '--disable-debug' '--disable-dependency-tracking' '--with-qt=no' '--with-quartz' '--without-pangocairo' 'CC=/usr/bin/llvm-gcc' 'CFLAGS=-Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4' 'LDFLAGS=-L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib' 'CPPFLAGS=-I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include' 'CXX=/usr/bin/llvm-g++' 'CXXFLAGS=-Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4' 'OBJC=/usr/bin/llvm-gcc' 'OBJCFLAGS=-Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4' --cache-file=/dev/null --srcdir=. | |
## ---------------- ## | |
## Cache variables. ## | |
## ---------------- ## | |
ac_cv_build=x86_64-apple-darwin11.4.0 | |
ac_cv_c_compiler_gnu=yes | |
ac_cv_c_const=yes | |
ac_cv_c_inline=inline | |
ac_cv_cxx_compiler_gnu=yes | |
ac_cv_env_CCC_set= | |
ac_cv_env_CCC_value= | |
ac_cv_env_CC_set=set | |
ac_cv_env_CC_value=/usr/bin/llvm-gcc | |
ac_cv_env_CFLAGS_set=set | |
ac_cv_env_CFLAGS_value='-Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4' | |
ac_cv_env_CPPFLAGS_set=set | |
ac_cv_env_CPPFLAGS_value='-I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include' | |
ac_cv_env_CPP_set= | |
ac_cv_env_CPP_value= | |
ac_cv_env_CXXCPP_set= | |
ac_cv_env_CXXCPP_value= | |
ac_cv_env_CXXFLAGS_set=set | |
ac_cv_env_CXXFLAGS_value='-Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4' | |
ac_cv_env_CXX_set=set | |
ac_cv_env_CXX_value=/usr/bin/llvm-g++ | |
ac_cv_env_FONTCONFIG_CFLAGS_set= | |
ac_cv_env_FONTCONFIG_CFLAGS_value= | |
ac_cv_env_FONTCONFIG_LIBS_set= | |
ac_cv_env_FONTCONFIG_LIBS_value= | |
ac_cv_env_FREETYPE2_CFLAGS_set= | |
ac_cv_env_FREETYPE2_CFLAGS_value= | |
ac_cv_env_FREETYPE2_LIBS_set= | |
ac_cv_env_FREETYPE2_LIBS_value= | |
ac_cv_env_GDK_PIXBUF_CFLAGS_set= | |
ac_cv_env_GDK_PIXBUF_CFLAGS_value= | |
ac_cv_env_GDK_PIXBUF_LIBS_set= | |
ac_cv_env_GDK_PIXBUF_LIBS_value= | |
ac_cv_env_GLADE_CFLAGS_set= | |
ac_cv_env_GLADE_CFLAGS_value= | |
ac_cv_env_GLADE_LIBS_set= | |
ac_cv_env_GLADE_LIBS_value= | |
ac_cv_env_GLITZ_CFLAGS_set= | |
ac_cv_env_GLITZ_CFLAGS_value= | |
ac_cv_env_GLITZ_LIBS_set= | |
ac_cv_env_GLITZ_LIBS_value= | |
ac_cv_env_GTKGLEXT_CFLAGS_set= | |
ac_cv_env_GTKGLEXT_CFLAGS_value= | |
ac_cv_env_GTKGLEXT_LIBS_set= | |
ac_cv_env_GTKGLEXT_LIBS_value= | |
ac_cv_env_GTKGL_CFLAGS_set= | |
ac_cv_env_GTKGL_CFLAGS_value= | |
ac_cv_env_GTKGL_LIBS_set= | |
ac_cv_env_GTKGL_LIBS_value= | |
ac_cv_env_GTK_CFLAGS_set= | |
ac_cv_env_GTK_CFLAGS_value= | |
ac_cv_env_GTK_LIBS_set= | |
ac_cv_env_GTK_LIBS_value= | |
ac_cv_env_GTS_CFLAGS_set= | |
ac_cv_env_GTS_CFLAGS_value= | |
ac_cv_env_GTS_LIBS_set= | |
ac_cv_env_GTS_LIBS_value= | |
ac_cv_env_LASI_CFLAGS_set= | |
ac_cv_env_LASI_CFLAGS_value= | |
ac_cv_env_LASI_LIBS_set= | |
ac_cv_env_LASI_LIBS_value= | |
ac_cv_env_LDFLAGS_set=set | |
ac_cv_env_LDFLAGS_value='-L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib' | |
ac_cv_env_LIBS_set= | |
ac_cv_env_LIBS_value= | |
ac_cv_env_MING_CFLAGS_set= | |
ac_cv_env_MING_CFLAGS_value= | |
ac_cv_env_MING_LIBS_set= | |
ac_cv_env_MING_LIBS_value= | |
ac_cv_env_OBJCFLAGS_set=set | |
ac_cv_env_OBJCFLAGS_value='-Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4' | |
ac_cv_env_OBJC_set=set | |
ac_cv_env_OBJC_value=/usr/bin/llvm-gcc | |
ac_cv_env_PANGOCAIRO_CFLAGS_set= | |
ac_cv_env_PANGOCAIRO_CFLAGS_value= | |
ac_cv_env_PANGOCAIRO_LIBS_set= | |
ac_cv_env_PANGOCAIRO_LIBS_value= | |
ac_cv_env_PANGOFT2_CFLAGS_set= | |
ac_cv_env_PANGOFT2_CFLAGS_value= | |
ac_cv_env_PANGOFT2_LIBS_set= | |
ac_cv_env_PANGOFT2_LIBS_value= | |
ac_cv_env_PKG_CONFIG_set= | |
ac_cv_env_PKG_CONFIG_value= | |
ac_cv_env_QTCORE_CFLAGS_set= | |
ac_cv_env_QTCORE_CFLAGS_value= | |
ac_cv_env_QTCORE_LIBS_set= | |
ac_cv_env_QTCORE_LIBS_value= | |
ac_cv_env_QTGUI_CFLAGS_set= | |
ac_cv_env_QTGUI_CFLAGS_value= | |
ac_cv_env_QTGUI_LIBS_set= | |
ac_cv_env_QTGUI_LIBS_value= | |
ac_cv_env_RSVG_CFLAGS_set= | |
ac_cv_env_RSVG_CFLAGS_value= | |
ac_cv_env_RSVG_LIBS_set= | |
ac_cv_env_RSVG_LIBS_value= | |
ac_cv_env_R_CFLAGS_set= | |
ac_cv_env_R_CFLAGS_value= | |
ac_cv_env_R_LIBS_set= | |
ac_cv_env_R_LIBS_value= | |
ac_cv_env_XMKMF_set= | |
ac_cv_env_XMKMF_value= | |
ac_cv_env_XRENDER_CFLAGS_set= | |
ac_cv_env_XRENDER_CFLAGS_value= | |
ac_cv_env_XRENDER_LIBS_set= | |
ac_cv_env_XRENDER_LIBS_value= | |
ac_cv_env_YACC_set= | |
ac_cv_env_YACC_value= | |
ac_cv_env_YFLAGS_set= | |
ac_cv_env_YFLAGS_value= | |
ac_cv_env_build_alias_set= | |
ac_cv_env_build_alias_value= | |
ac_cv_env_host_alias_set= | |
ac_cv_env_host_alias_value= | |
ac_cv_env_target_alias_set= | |
ac_cv_env_target_alias_value= | |
ac_cv_func__NSGetEnviron=yes | |
ac_cv_func___freadable=no | |
ac_cv_func__sysconf=no | |
ac_cv_func_alloca_works=yes | |
ac_cv_func_argz_add=no | |
ac_cv_func_argz_append=no | |
ac_cv_func_argz_count=no | |
ac_cv_func_argz_create_sep=no | |
ac_cv_func_argz_insert=no | |
ac_cv_func_argz_next=no | |
ac_cv_func_argz_stringify=no | |
ac_cv_func_cbrt=yes | |
ac_cv_func_closedir=yes | |
ac_cv_func_connect=yes | |
ac_cv_func_deflateBound=yes | |
ac_cv_func_dlerror=yes | |
ac_cv_func_drand48=yes | |
ac_cv_func_feenableexcept=no | |
ac_cv_func_fesetenv=yes | |
ac_cv_func_getenv=yes | |
ac_cv_func_gethostbyname=yes | |
ac_cv_func_getrusage=yes | |
ac_cv_func_lrand48=yes | |
ac_cv_func_lsqrt=no | |
ac_cv_func_memset=yes | |
ac_cv_func_nl_langinfo=yes | |
ac_cv_func_opendir=yes | |
ac_cv_func_pow=yes | |
ac_cv_func_readdir=yes | |
ac_cv_func_remove=yes | |
ac_cv_func_setenv=yes | |
ac_cv_func_setmode=yes | |
ac_cv_func_shl_load=no | |
ac_cv_func_shmat=yes | |
ac_cv_func_sqrt=yes | |
ac_cv_func_srand48=yes | |
ac_cv_func_strcasecmp=yes | |
ac_cv_func_strcasestr=yes | |
ac_cv_func_strchr=yes | |
ac_cv_func_strdup=yes | |
ac_cv_func_strerror=yes | |
ac_cv_func_strlcat=yes | |
ac_cv_func_strlcpy=yes | |
ac_cv_func_strncasecmp=yes | |
ac_cv_func_strstr=yes | |
ac_cv_func_strtoll=yes | |
ac_cv_func_strtoul=yes | |
ac_cv_func_strtoull=yes | |
ac_cv_func_uname=yes | |
ac_cv_func_vsnprintf=yes | |
ac_cv_have_decl_lt_dlinterface_register=yes | |
ac_cv_have_x='have_x=yes ac_x_includes='\'''\'' ac_x_libraries='\'''\''' | |
ac_cv_header_EXTERN_h=yes | |
ac_cv_header_GL_glut_h=yes | |
ac_cv_header_IL_il_h=no | |
ac_cv_header_Python_h=yes | |
ac_cv_header_X11_Intrinsic_h=yes | |
ac_cv_header_X11_Xaw_Text_h=yes | |
ac_cv_header_argz_h=no | |
ac_cv_header_crt_externs_h=yes | |
ac_cv_header_dirent_dirent_h=yes | |
ac_cv_header_dirent_h=yes | |
ac_cv_header_dl_h=no | |
ac_cv_header_dld_h=no | |
ac_cv_header_dlfcn_h=yes | |
ac_cv_header_errno_h=yes | |
ac_cv_header_expat_h=yes | |
ac_cv_header_fcntl_h=yes | |
ac_cv_header_fenv_h=yes | |
ac_cv_header_float_h=yes | |
ac_cv_header_fpu_control_h=no | |
ac_cv_header_getopt_h=yes | |
ac_cv_header_ghostscript_iapi_h=no | |
ac_cv_header_iconv_h=yes | |
ac_cv_header_inttypes_h=yes | |
ac_cv_header_jni_h=yes | |
ac_cv_header_jpeglib_h=yes | |
ac_cv_header_langinfo_h=yes | |
ac_cv_header_libgen_h=yes | |
ac_cv_header_libintl_h=yes | |
ac_cv_header_limits_h=yes | |
ac_cv_header_ltdl_h=yes | |
ac_cv_header_mach_o_dyld_h=yes | |
ac_cv_header_malloc_h=no | |
ac_cv_header_memory_h=yes | |
ac_cv_header_php_h=yes | |
ac_cv_header_png_h=yes | |
ac_cv_header_pthread_h=yes | |
ac_cv_header_ruby_h=yes | |
ac_cv_header_search_h=yes | |
ac_cv_header_setjmp_h=yes | |
ac_cv_header_stdarg_h=yes | |
ac_cv_header_stdbool_h=no | |
ac_cv_header_stdc=yes | |
ac_cv_header_stddef_h=yes | |
ac_cv_header_stdint_h=yes | |
ac_cv_header_stdlib_h=yes | |
ac_cv_header_string_h=yes | |
ac_cv_header_strings_h=yes | |
ac_cv_header_sys_dl_h=no | |
ac_cv_header_sys_fpu_h=no | |
ac_cv_header_sys_inotify_h=no | |
ac_cv_header_sys_ioctl_h=yes | |
ac_cv_header_sys_mman_h=yes | |
ac_cv_header_sys_select_h=yes | |
ac_cv_header_sys_socket_h=yes | |
ac_cv_header_sys_stat_h=yes | |
ac_cv_header_sys_time_h=yes | |
ac_cv_header_sys_times_h=yes | |
ac_cv_header_sys_types_h=yes | |
ac_cv_header_tcl_h=yes | |
ac_cv_header_termios_h=yes | |
ac_cv_header_time=yes | |
ac_cv_header_time_h=yes | |
ac_cv_header_tkInt_h=no | |
ac_cv_header_tk_h=yes | |
ac_cv_header_unistd_h=yes | |
ac_cv_header_values_h=no | |
ac_cv_header_zlib_h=yes | |
ac_cv_host=x86_64-apple-darwin11.4.0 | |
ac_cv_lib_ICE_IceConnectionNumber=yes | |
ac_cv_lib_IL_main=no | |
ac_cv_lib_Xaw_main=yes | |
ac_cv_lib_Xpm_main=yes | |
ac_cv_lib_dl_dlopen=yes | |
ac_cv_lib_dld_dld_link=no | |
ac_cv_lib_dld_shl_load=no | |
ac_cv_lib_expat_main=yes | |
ac_cv_lib_gen_basename=no | |
ac_cv_lib_glut_main=yes | |
ac_cv_lib_jpeg_main=yes | |
ac_cv_lib_lex=-lfl | |
ac_cv_lib_ltdl_lt_dladvise_init=yes | |
ac_cv_lib_ltdl_lt_dladvise_preload=yes | |
ac_cv_lib_m_main=yes | |
ac_cv_lib_png_main=yes | |
ac_cv_lib_z_main=yes | |
ac_cv_objc_compiler_gnu=yes | |
ac_cv_objext=o | |
ac_cv_path_EGREP='grep -E' | |
ac_cv_path_FGREP='grep -F' | |
ac_cv_path_GREP=grep | |
ac_cv_path_LIBPNG_CONFIG=/usr/X11/bin/libpng-config | |
ac_cv_path_SED=sed | |
ac_cv_path_TCLSH=/usr/bin/tclsh8.5 | |
ac_cv_path_WISH=/usr/bin/wish8.5 | |
ac_cv_path_ac_pt_PKG_CONFIG=/usr/local/bin/pkg-config | |
ac_cv_path_install='/usr/bin/install -c' | |
ac_cv_prog_AWK=awk | |
ac_cv_prog_CPP='/usr/bin/llvm-gcc -E' | |
ac_cv_prog_CXXCPP='/usr/bin/llvm-g++ -E' | |
ac_cv_prog_GREP=grep | |
ac_cv_prog_GROFF=groff | |
ac_cv_prog_JAVA=java | |
ac_cv_prog_LEX=flex | |
ac_cv_prog_PERL=perl | |
ac_cv_prog_PHP=php | |
ac_cv_prog_PS2PDF=false | |
ac_cv_prog_PYTHON=python | |
ac_cv_prog_RUBY=ruby | |
ac_cv_prog_SED=sed | |
ac_cv_prog_SORT=sort | |
ac_cv_prog_SWIG=swig | |
ac_cv_prog_YACC='bison -y' | |
ac_cv_prog_ac_ct_AR=ar | |
ac_cv_prog_ac_ct_CC=/usr/bin/llvm-gcc | |
ac_cv_prog_ac_ct_DSYMUTIL=dsymutil | |
ac_cv_prog_ac_ct_LIPO=lipo | |
ac_cv_prog_ac_ct_NMEDIT=nmedit | |
ac_cv_prog_ac_ct_OTOOL=otool | |
ac_cv_prog_ac_ct_RANLIB=ranlib | |
ac_cv_prog_ac_ct_STRIP=strip | |
ac_cv_prog_cc__usr_bin_llvm_gcc_c_o=yes | |
ac_cv_prog_cc_c89= | |
ac_cv_prog_cc_g=yes | |
ac_cv_prog_cxx_g=yes | |
ac_cv_prog_lex_root=lex.yy | |
ac_cv_prog_lex_yytext_pointer=yes | |
ac_cv_prog_make_make_set=yes | |
ac_cv_prog_objc_g=yes | |
ac_cv_search_dlopen='none required' | |
ac_cv_search_opendir='none required' | |
ac_cv_search_strerror='none required' | |
ac_cv_type__Bool=yes | |
ac_cv_type_error_t=no | |
ac_cv_type_mode_t=yes | |
ac_cv_type_pid_t=yes | |
ac_cv_type_size_t=yes | |
ac_cv_type_socklen_t=yes | |
ac_cv_type_ssize_t=yes | |
ac_cv_type_uid_t=yes | |
ac_cv_working_alloca_h=yes | |
acl_cv_hardcode_direct=yes | |
acl_cv_hardcode_libdir_flag_spec= | |
acl_cv_hardcode_libdir_separator= | |
acl_cv_hardcode_minus_L=no | |
acl_cv_libext=a | |
acl_cv_path_LD=/usr/bin/llvm-gcc | |
acl_cv_prog_gnu_ld=no | |
acl_cv_rpath=done | |
acl_cv_shlibext=dylib | |
acl_cv_sys_lib_dlsearch_path_spec='/lib /usr/lib' | |
acl_cv_sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' | |
acl_cv_wl=-Wl, | |
am_cv_CC_dependencies_compiler_type=none | |
am_cv_CXX_dependencies_compiler_type=none | |
am_cv_OBJC_dependencies_compiler_type=none | |
am_cv_func_iconv=yes | |
am_cv_lib_iconv=yes | |
am_cv_proto_iconv='extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);' | |
am_cv_proto_iconv_arg1= | |
libltdl_cv_lib_dl_dlopen=yes | |
libltdl_cv_need_uscore=no | |
libltdl_cv_preloaded_symbols=yes | |
libltdl_cv_shlibext=.so | |
lt_cv_apple_cc_single_mod=yes | |
lt_cv_deplibs_check_method=pass_all | |
lt_cv_dlopen=dlopen | |
lt_cv_dlopen_libs=-ldl | |
lt_cv_dlopen_self=yes | |
lt_cv_dlopen_self_static=yes | |
lt_cv_file_magic_cmd='$MAGIC_CMD' | |
lt_cv_file_magic_test_file= | |
lt_cv_ld_exported_symbols_list=yes | |
lt_cv_ld_reload_flag=-r | |
lt_cv_module_path_var=DYLD_LIBRARY_PATH | |
lt_cv_nm_interface='BSD nm' | |
lt_cv_objdir=.libs | |
lt_cv_path_LD=/usr/bin/llvm-gcc | |
lt_cv_path_LDCXX=/usr/bin/llvm-gcc | |
lt_cv_path_NM=/usr/bin/nm | |
lt_cv_prog_compiler_c_o=yes | |
lt_cv_prog_compiler_c_o_CXX=yes | |
lt_cv_prog_compiler_pic_works=yes | |
lt_cv_prog_compiler_pic_works_CXX=yes | |
lt_cv_prog_compiler_rtti_exceptions=yes | |
lt_cv_prog_compiler_static_works=no | |
lt_cv_prog_compiler_static_works_CXX=no | |
lt_cv_prog_gnu_ld=no | |
lt_cv_prog_gnu_ldcxx=no | |
lt_cv_sys_dlopen_deplibs=yes | |
lt_cv_sys_dlsearch_path='/usr/local/lib /lib /usr/lib' | |
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p'\''' | |
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\''' | |
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\''' | |
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[BCDEGRST]* .* \(.*\)$/extern char \1;/p'\''' | |
lt_cv_sys_max_cmd_len=196608 | |
lt_cv_sys_symbol_underscore=yes | |
pkg_cv_FONTCONFIG_CFLAGS='-I/usr/X11/include ' | |
pkg_cv_FONTCONFIG_LIBS='-L/usr/X11/lib -lfontconfig ' | |
pkg_cv_FREETYPE2_CFLAGS='-I/usr/X11/include/freetype2 -I/usr/X11/include ' | |
pkg_cv_FREETYPE2_LIBS='-L/usr/X11/lib -lfreetype ' | |
pkg_cv_XRENDER_CFLAGS='-I/usr/X11/include ' | |
pkg_cv_XRENDER_LIBS='-L/usr/X11/lib -lXrender -lX11 ' | |
## ----------------- ## | |
## Output variables. ## | |
## ----------------- ## | |
ACLOCAL='${SHELL} /private/tmp/homebrew-graphviz-2.28.0-XSw4/graphviz-2.28.0/config/missing --run aclocal-1.11' | |
ALLOCA='' | |
AMDEPBACKSLASH='' | |
AMDEP_FALSE='' | |
AMDEP_TRUE='#' | |
AMTAR='${SHELL} /private/tmp/homebrew-graphviz-2.28.0-XSw4/graphviz-2.28.0/config/missing --run tar' | |
AM_BACKSLASH='\' | |
AM_DEFAULT_VERBOSITY='0' | |
AR='ar' | |
ARGZ_H='argz.h' | |
AUTOCONF='${SHELL} /private/tmp/homebrew-graphviz-2.28.0-XSw4/graphviz-2.28.0/config/missing --run autoconf' | |
AUTOHEADER='${SHELL} /private/tmp/homebrew-graphviz-2.28.0-XSw4/graphviz-2.28.0/config/missing --run autoheader' | |
AUTOMAKE='${SHELL} /private/tmp/homebrew-graphviz-2.28.0-XSw4/graphviz-2.28.0/config/missing --run automake-1.11' | |
AWK='awk' | |
CC='/usr/bin/llvm-gcc' | |
CCDEPMODE='depmode=none' | |
CFLAGS='-Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4 -fno-common -Wall' | |
CONVENIENCE_LTDL_FALSE='#' | |
CONVENIENCE_LTDL_TRUE='' | |
CPP='/usr/bin/llvm-gcc -E' | |
CPPFLAGS='-I/usr/local/Cellar/gettext/0.18.1.1/include -isystem /usr/local/include -I/usr/X11/include -I/usr/local/Cellar/graphviz/2.28.0/include' | |
CXX='/usr/bin/llvm-g++' | |
CXXCPP='/usr/bin/llvm-g++ -E' | |
CXXDEPMODE='depmode=none' | |
CXXFLAGS='-Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4' | |
CYGPATH_W='echo' | |
CYGWIN='no' | |
DARWIN9='no' | |
DARWIN='yes' | |
DEFS='-DHAVE_CONFIG_H' | |
DEPDIR='.deps' | |
DEVIL_INCLUDES='' | |
DEVIL_LIBS='' | |
DSYMUTIL='dsymutil' | |
DUMPBIN='' | |
ECHO_C='\c' | |
ECHO_N='' | |
ECHO_T='' | |
EGREP='grep -E' | |
ENABLE_LTDL_FALSE='#' | |
ENABLE_LTDL_TRUE='' | |
ENABLE_SHARED_FALSE='#' | |
ENABLE_SHARED_TRUE='' | |
ENABLE_STATIC_FALSE='' | |
ENABLE_STATIC_TRUE='#' | |
EXEEXT='' | |
EXPAT_CONFIG='' | |
EXPAT_INCLUDES='' | |
EXPAT_LIBS=' -lexpat' | |
EXTRA_SMYRNA_LDFLAGS='' | |
FGREP='grep -F' | |
FONTCONFIG_CFLAGS='-I/usr/X11/include ' | |
FONTCONFIG_CONFIG='' | |
FONTCONFIG_LIBS='-L/usr/X11/lib -lfontconfig ' | |
FREETYPE2_CFLAGS='-I/usr/X11/include/freetype2 -I/usr/X11/include ' | |
FREETYPE2_LIBS='-L/usr/X11/lib -lfreetype ' | |
FREETYPE_CONFIG='' | |
GDIPLUS_CFLAGS='' | |
GDIPLUS_HEADS='' | |
GDIPLUS_LIBS='' | |
GDK_PIXBUF_CFLAGS='' | |
GDK_PIXBUF_LIBS='' | |
GDLIB_CONFIG='' | |
GD_INCLUDES='-I$(top_srcdir)/lib/gd' | |
GD_LIBS='$(top_builddir)/lib/gd/libgvgd.la' | |
GLADE_CFLAGS='' | |
GLADE_LIBS='' | |
GLITZ_CFLAGS='' | |
GLITZ_LIBS='' | |
GLUT_CFLAGS='' | |
GLUT_LIBS=' -lglut' | |
GO='' | |
GO_INCLUDES='' | |
GO_LIBS='' | |
GRAPHVIZ_COLLECTION='stable' | |
GRAPHVIZ_SOURCES='graphviz/stable/SOURCES' | |
GRAPHVIZ_VERSION_BUILD='0' | |
GRAPHVIZ_VERSION_MAJOR='2' | |
GRAPHVIZ_VERSION_MICRO='0' | |
GRAPHVIZ_VERSION_MINOR='28' | |
GRAPHVIZ_VERSION_REVISION='0' | |
GREP='grep' | |
GROFF='groff' | |
GS_CFLAGS='' | |
GS_LIBS='' | |
GTKGLEXT_CFLAGS='' | |
GTKGLEXT_LIBS='' | |
GTKGL_CFLAGS='' | |
GTKGL_LIBS='' | |
GTK_CFLAGS='' | |
GTK_LIBS='' | |
GTS_CFLAGS='' | |
GTS_LIBS='' | |
GUILE='' | |
GUILE_INCLUDES='' | |
GUILE_LIBS='' | |
GVPLUGIN_CONFIG_FILE='config6' | |
GVPLUGIN_VERSION='6' | |
GVPLUGIN_VERSION_INFO='6:0:0' | |
ICONV_INCLUDES='' | |
ICONV_LIBS='-liconv' | |
INCLTDL='' | |
INSTALL_DATA='${INSTALL} -m 644' | |
INSTALL_LTDL_FALSE='' | |
INSTALL_LTDL_TRUE='#' | |
INSTALL_PROGRAM='${INSTALL}' | |
INSTALL_SCRIPT='${INSTALL}' | |
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' | |
IO='' | |
IO_INCLUDES='' | |
IO_LIBS='' | |
IPSEPCOLA_INCLUDES='' | |
IPSEPCOLA_LIBS='' | |
JAVA='java' | |
JAVA_INCLUDES='-I/System/Library/Frameworks/JavaVM.framework/Headers' | |
JAVA_LIBS='' | |
JPEG_INCLUDES='' | |
JPEG_LIBS=' -ljpeg' | |
LASI_CFLAGS='' | |
LASI_LIBS='' | |
LD='/usr/bin/llvm-gcc' | |
LDFLAGS='-L/usr/local/Cellar/gettext/0.18.1.1/lib -L/usr/local/lib -L/usr/X11/lib -L/usr/local/Cellar/graphviz/2.28.0/lib' | |
LEX='flex' | |
LEXLIB='-lfl' | |
LEX_OUTPUT_ROOT='lex.yy' | |
LIBADD_DL=' ' | |
LIBADD_DLD_LINK='' | |
LIBADD_DLOPEN='' | |
LIBADD_SHL_LOAD='' | |
LIBGEN_LIBS='' | |
LIBICONV='-liconv' | |
LIBLTDL='-lltdl' | |
LIBLTDL_LDFLAGS='' | |
LIBOBJS='' | |
LIBPNG_CONFIG='/usr/X11/bin/libpng-config' | |
LIBS='-lltdl ' | |
LIBTOOL='$(SHELL) $(top_builddir)/libtool' | |
LIPO='lipo' | |
LN_S='ln -s' | |
LTDLDEPS='' | |
LTDLINCL='' | |
LTDLOPEN='libltdl' | |
LTLIBICONV='-liconv' | |
LTLIBOBJS='' | |
LT_CONFIG_H='config.h' | |
LT_DLLOADERS=' libltdl/dlopen.la' | |
LT_DLPREOPEN='-dlpreopen libltdl/dlopen.la ' | |
LUA='' | |
LUACONFIG='' | |
LUA_INCLUDES='' | |
LUA_INSTALL_DIR='' | |
LUA_LIBS='' | |
MAKEINFO='${SHELL} /private/tmp/homebrew-graphviz-2.28.0-XSw4/graphviz-2.28.0/config/missing --run makeinfo' | |
MATH_LIBS='-lm' | |
MCS='' | |
MINGW32='no' | |
MING_CFLAGS='' | |
MING_LIBS='' | |
MKDIR_P='config/install-sh -c -d' | |
NM='/usr/bin/nm' | |
NMEDIT='nmedit' | |
OBJC='/usr/bin/llvm-gcc' | |
OBJCDEPMODE='depmode=none' | |
OBJCFLAGS='-Os -w -pipe -mmacosx-version-min=10.7 -march=core2 -msse4' | |
OBJDUMP='false' | |
OBJEXT='o' | |
OCAML='' | |
OCAML_INCLUDES='' | |
OCAML_LIBS='' | |
OCAML_OPT='' | |
OTOOL64=':' | |
OTOOL='otool' | |
PACKAGE='graphviz' | |
PACKAGE_BUGREPORT='http://www.graphviz.org/' | |
PACKAGE_NAME='graphviz' | |
PACKAGE_STRING='graphviz 2.28.0' | |
PACKAGE_TARNAME='graphviz' | |
PACKAGE_URL='' | |
PACKAGE_VERSION='2.28.0' | |
PANGOCAIRO_CFLAGS='' | |
PANGOCAIRO_LIBS='' | |
PANGOFT2_CFLAGS='' | |
PANGOFT2_LIBS='' | |
PATH_SEPARATOR=':' | |
PERL='perl' | |
PERL_INCLUDES='-I/System/Library/Perl/5.12/darwin-thread-multi-2level/CORE' | |
PERL_INSTALL_DIR='/Network/Library/Perl/5.12/darwin-thread-multi-2level' | |
PERL_LIBS='-L/System/Library/Perl/5.12/darwin-thread-multi-2level/CORE -lperl' | |
PHP='php' | |
PHP_INCLUDES='-I/usr/include/php -I/usr/include/php/main -I/usr/include/php/Zend -I/usr/include/php/TSRM' | |
PHP_INSTALL_DATADIR='/usr/share/php' | |
PHP_INSTALL_DIR='/usr/lib/php/modules' | |
PHP_LIBS='' | |
PKGCONFIG='' | |
PKG_CONFIG='/usr/local/bin/pkg-config' | |
PLATFORMSDKINCLUDE='' | |
PLATFORMSDKINCLUDE_ESCAPED='' | |
PLATFORMSDKLIB='' | |
PNG_INCLUDES='-I/usr/X11/include/libpng15' | |
PNG_LIBS='-L/usr/X11/lib -lpng' | |
PS2PDF='false' | |
PYTHON23='' | |
PYTHON23_INCLUDES='' | |
PYTHON23_INSTALL_DIR='' | |
PYTHON23_LIBS='' | |
PYTHON24='' | |
PYTHON24_INCLUDES='' | |
PYTHON24_INSTALL_DIR='' | |
PYTHON24_LIBS='' | |
PYTHON25='' | |
PYTHON25_INCLUDES='' | |
PYTHON25_INSTALL_DIR='' | |
PYTHON25_LIBS='' | |
PYTHON26='' | |
PYTHON26_INCLUDES='' | |
PYTHON26_INSTALL_DIR='' | |
PYTHON26_LIBS='' | |
PYTHON27='' | |
PYTHON27_INCLUDES='' | |
PYTHON27_INSTALL_DIR='' | |
PYTHON27_LIBS='' | |
PYTHON='python' | |
PYTHON_INCLUDES='-I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7' | |
PYTHON_INSTALL_DIR='/Library/Python/2.7/site-packages' | |
PYTHON_LIBS='-lpython2.7' | |
QMAKE='' | |
QTCORE_CFLAGS='' | |
QTCORE_LIBS='' | |
QTGUI_CFLAGS='' | |
QTGUI_LIBS='' | |
QUARTZ_CFLAGS='' | |
QUARTZ_LIBS='-framework ApplicationServices' | |
RANLIB='ranlib' | |
RC='false' | |
RC_IS_RC_FALSE='' | |
RC_IS_RC_TRUE='#' | |
RC_IS_WINDRES_FALSE='' | |
RC_IS_WINDRES_TRUE='#' | |
RSVG_CFLAGS='' | |
RSVG_LIBS='' | |
RUBY='ruby' | |
RUBY_INCLUDES='-I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0' | |
RUBY_INSTALL_DIR='/Library/Ruby/Site/1.8/universal-darwin11.0' | |
RUBY_LIBS='-L/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib -lruby' | |
R_CFLAGS='' | |
R_LIBS='' | |
SED='sed' | |
SET_MAKE='' | |
SHARP_INCLUDES='' | |
SHARP_LIBS='' | |
SHELL='/bin/sh' | |
SOCKET_LIBS='' | |
SORT='sort' | |
STRIP='strip' | |
SWIG='swig' | |
TCLINT_INCLUDES='-I$(top_srcdir)/tclpkg/tclstubs' | |
TCLSH='/usr/bin/tclsh8.5' | |
TCL_CFLAGS=' -DUSE_TCL_STUBS' | |
TCL_DEFS='-DPACKAGE_NAME=\"tcl\" -DPACKAGE_TARNAME=\"tcl\" -DPACKAGE_VERSION=\"8.5\" -DPACKAGE_STRING=\"tcl\ 8.5\" -DPACKAGE_BUGREPORT=\"\" -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 -DNO_VALUES_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_PTHREAD_GET_STACKSIZE_NP=1 -DTCL_THREADS=1 -DTCL_CFGVAL_ENCODING=\"iso8859-1\" -DMODULE_SCOPE=extern\ __attribute__\(\(__visibility__\(\"hidden\"\)\)\) -DMAC_OSX_TCL=1 -DHAVE_COREFOUNDATION=1 -DTCL_SHLIB_EXT=\".dylib\" -DTCL_CFG_OPTIMIZED=1 -DTCL_CFG_DEBUG=1 -DTCL_TOMMATH=1 -DMP_PREC=4 -DTCL_WIDE_INT_IS_LONG=1 -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRTOL=1 -DHAVE_WAITPID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETPWUID_R_5=1 -DHAVE_GETPWUID_R=1 -DHAVE_GETPWNAM_R_5=1 -DHAVE_GETPWNAM_R=1 -DHAVE_GETGRGID_R_5=1 -DHAVE_GETGRGID_R=1 -DHAVE_GETGRNAM_R_5=1 -DHAVE_GETGRNAM_R=1 -DHAVE_MTSAFE_GETHOSTBYNAME=1 -DHAVE_MTSAFE_GETHOSTBYADDR=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_GMTIME_R=1 -DHAVE_LOCALTIME_R=1 -DHAVE_MKTIME=1 -DHAVE_TM_GMTOFF=1 -DHAVE_TIMEZONE_VAR=1 -DHAVE_STRUCT_STAT_ST_BLOCKS=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 -DHAVE_BLKCNT_T=1 -DHAVE_INTPTR_T=1 -DHAVE_UINTPTR_T=1 -DHAVE_SIGNED_CHAR=1 -DHAVE_LANGINFO=1 -DHAVE_CHFLAGS=1 -DHAVE_GETATTRLIST=1 -DHAVE_COPYFILE_H=1 -DHAVE_COPYFILE=1 -DHAVE_LIBKERN_OSATOMIC_H=1 -DHAVE_OSSPINLOCKLOCK=1 -DHAVE_PTHREAD_ATFORK=1 -DUSE_VFORK=1 -DTCL_DEFAULT_ENCODING=\"utf-8\" -DTCL_LOAD_FROM_MEMORY=1 -DTCL_WIDE_CLICKS=1 -DHAVE_AVAILABILITYMACROS_H=1 -DHAVE_WEAK_IMPORT=1 -D_DARWIN_C_SOURCE=1 -DHAVE_FTS=1 -DHAVE_SYS_IOCTL_H=1 -DHAVE_SYS_FILIO_H=1 -DTCL_UNLOAD_DLLS=1 -DUSE_DTRACE=1 -DTCL_FRAMEWORK=1 ' | |
TCL_INCLUDES='' | |
TCL_INSTALL_DIR='/usr/lib/tcl8.5' | |
TCL_LIBS='' | |
TCL_MAJOR_VERSION='8' | |
TCL_MINOR_VERSION='5' | |
TCL_PATCH_LEVEL='.9' | |
TCL_PKGINDEX='tcldot/pkgIndex.tcl tclpathplan/pkgIndex.tcl' | |
TCL_PKGINDEX_GD='gdtclft/pkgIndex.tcl' | |
TCL_PKGINDEX_SWIG='gv/pkgIndex.tcl' | |
TCL_SHLIB_SUFFIX='.dylib' | |
TCL_SRC_DIR='/SourceCache/tcl/tcl-95/tcl/tcl' | |
TCL_STUB_LIB_SPEC='-L/System/Library/Frameworks/Tcl.framework/Versions/8.5 -ltclstub8.5' | |
TCL_VERSION='8.5' | |
TKINT_INCLUDES='-I$(top_srcdir)/tclpkg/tkstubs' | |
TK_CFLAGS=' -DUSE_TK_STUBS' | |
TK_DEFS='-DPACKAGE_NAME=\"tk\" -DPACKAGE_TARNAME=\"tk\" -DPACKAGE_VERSION=\"8.5\" -DPACKAGE_STRING=\"tk\ 8.5\" -DPACKAGE_BUGREPORT=\"\" -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_LIMITS_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_PTHREAD_GET_STACKSIZE_NP=1 -DTCL_THREADS=1 -DMODULE_SCOPE=extern\ __attribute__\(\(__visibility__\(\"hidden\"\)\)\) -DMAC_OSX_TCL=1 -DHAVE_COREFOUNDATION=1 -DTCL_SHLIB_EXT=\".dylib\" -DTCL_CFG_OPTIMIZED=1 -DTCL_CFG_DEBUG=1 -DTCL_WIDE_INT_IS_LONG=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_INTPTR_T=1 -DHAVE_UINTPTR_T=1 -DHAVE_PW_GECOS=1 -DHAVE_AVAILABILITYMACROS_H=1 -DHAVE_WEAK_IMPORT=1 -D_DARWIN_C_SOURCE=1 -DMAC_OSX_TK=1 -DTK_FRAMEWORK=1 ' | |
TK_INCLUDES='' | |
TK_LIB_SPEC='-F/System/Library/Frameworks -framework Tk' | |
TK_MAJOR_VERSION='8' | |
TK_MINOR_VERSION='5' | |
TK_PATCH_LEVEL='.9' | |
TK_PKGINDEX='tkspline/pkgIndex.tcl' | |
TK_SRC_DIR='/SourceCache/tcl/tcl-95/tk/tk' | |
TK_STUB_LIB_SPEC='-L/System/Library/Frameworks/Tk.framework/Versions/8.5 -ltkstub8.5' | |
TK_VERSION='8.5' | |
TK_XINCLUDES='' | |
VERSION='2.28.0' | |
VERSION_DATE='20120726.1452' | |
VISIO_CFLAGS='' | |
VISIO_LIBS='' | |
WISH='/usr/bin/wish8.5' | |
WITH_CGRAPH_FALSE='' | |
WITH_CGRAPH_TRUE='#' | |
WITH_DARWIN9_FALSE='' | |
WITH_DARWIN9_TRUE='#' | |
WITH_DEVIL_FALSE='' | |
WITH_DEVIL_TRUE='#' | |
WITH_FONTCONFIG_FALSE='#' | |
WITH_FONTCONFIG_TRUE='' | |
WITH_FREETYPE2_FALSE='' | |
WITH_FREETYPE2_TRUE='#' | |
WITH_GDIPLUS_FALSE='' | |
WITH_GDIPLUS_TRUE='#' | |
WITH_GDK_PIXBUF_FALSE='' | |
WITH_GDK_PIXBUF_TRUE='#' | |
WITH_GLADE_FALSE='' | |
WITH_GLADE_TRUE='#' | |
WITH_GLITZ_FALSE='' | |
WITH_GLITZ_TRUE='#' | |
WITH_GO_FALSE='' | |
WITH_GO_TRUE='#' | |
WITH_GS_FALSE='' | |
WITH_GS_TRUE='#' | |
WITH_GTKGLEXT_FALSE='' | |
WITH_GTKGLEXT_TRUE='#' | |
WITH_GTKGL_FALSE='' | |
WITH_GTKGL_TRUE='#' | |
WITH_GTK_FALSE='' | |
WITH_GTK_TRUE='#' | |
WITH_GTS_FALSE='' | |
WITH_GTS_TRUE='#' | |
WITH_GUILE_FALSE='' | |
WITH_GUILE_TRUE='#' | |
WITH_IO_FALSE='' | |
WITH_IO_TRUE='#' | |
WITH_IPSEPCOLA_FALSE='' | |
WITH_IPSEPCOLA_TRUE='#' | |
WITH_JAVA_FALSE='#' | |
WITH_JAVA_TRUE='' | |
WITH_LASI_FALSE='' | |
WITH_LASI_TRUE='#' | |
WITH_LIBGD_FALSE='#' | |
WITH_LIBGD_TRUE='' | |
WITH_LUA_FALSE='' | |
WITH_LUA_TRUE='#' | |
WITH_MING_FALSE='' | |
WITH_MING_TRUE='#' | |
WITH_MYLIBGD_FALSE='#' | |
WITH_MYLIBGD_TRUE='' | |
WITH_OCAMLOPT_FALSE='' | |
WITH_OCAMLOPT_TRUE='#' | |
WITH_OCAML_FALSE='' | |
WITH_OCAML_TRUE='#' | |
WITH_ORTHO_FALSE='#' | |
WITH_ORTHO_TRUE='' | |
WITH_PANGOCAIRO_FALSE='' | |
WITH_PANGOCAIRO_TRUE='#' | |
WITH_PERL_FALSE='#' | |
WITH_PERL_TRUE='' | |
WITH_PHP_FALSE='#' | |
WITH_PHP_TRUE='' | |
WITH_PYTHON23_FALSE='' | |
WITH_PYTHON23_TRUE='#' | |
WITH_PYTHON24_FALSE='' | |
WITH_PYTHON24_TRUE='#' | |
WITH_PYTHON25_FALSE='' | |
WITH_PYTHON25_TRUE='#' | |
WITH_PYTHON26_FALSE='' | |
WITH_PYTHON26_TRUE='#' | |
WITH_PYTHON27_FALSE='' | |
WITH_PYTHON27_TRUE='#' | |
WITH_PYTHON_FALSE='#' | |
WITH_PYTHON_TRUE='' | |
WITH_QT_FALSE='' | |
WITH_QT_TRUE='#' | |
WITH_QUARTZ_FALSE='#' | |
WITH_QUARTZ_TRUE='' | |
WITH_RSVG_FALSE='' | |
WITH_RSVG_TRUE='#' | |
WITH_RUBY_FALSE='#' | |
WITH_RUBY_TRUE='' | |
WITH_R_FALSE='' | |
WITH_R_TRUE='#' | |
WITH_SFDP_FALSE='#' | |
WITH_SFDP_TRUE='' | |
WITH_SHARP_FALSE='' | |
WITH_SHARP_TRUE='#' | |
WITH_SMYRNA_FALSE='' | |
WITH_SMYRNA_TRUE='#' | |
WITH_SWIG_FALSE='#' | |
WITH_SWIG_TRUE='' | |
WITH_TCL_FALSE='#' | |
WITH_TCL_TRUE='' | |
WITH_TK_FALSE='#' | |
WITH_TK_TRUE='' | |
WITH_VISIO_FALSE='' | |
WITH_VISIO_TRUE='#' | |
WITH_WIN32_FALSE='' | |
WITH_WIN32_TRUE='#' | |
WITH_XAW_FALSE='#' | |
WITH_XAW_TRUE='' | |
WITH_XRENDER_FALSE='' | |
WITH_XRENDER_TRUE='#' | |
WITH_X_FALSE='#' | |
WITH_X_TRUE='' | |
XAW_INCLUDES='' | |
XAW_LIBS=' -lXaw' | |
XMKMF='' | |
XPM_INCLUDES='' | |
XPM_LIBS=' -lXpm' | |
XRENDER_CFLAGS='-I/usr/X11/include ' | |
XRENDER_LIBS='-L/usr/X11/lib -lXrender -lX11 ' | |
X_CFLAGS='' | |
X_EXTRA_LIBS='' | |
X_LIBS='' | |
X_PRE_LIBS=' -lSM -lICE' | |
YACC='bison -y' | |
YFLAGS='' | |
Z_INCLUDES='' | |
Z_LIBS=' -lz' | |
ac_ct_CC='/usr/bin/llvm-gcc' | |
ac_ct_CXX='' | |
ac_ct_DUMPBIN='' | |
ac_ct_OBJC='' | |
am__EXEEXT_FALSE='' | |
am__EXEEXT_TRUE='#' | |
am__fastdepCC_FALSE='' | |
am__fastdepCC_TRUE='#' | |
am__fastdepCXX_FALSE='' | |
am__fastdepCXX_TRUE='#' | |
am__fastdepOBJC_FALSE='' | |
am__fastdepOBJC_TRUE='#' | |
am__include='include' | |
am__isrc='' | |
am__leading_dot='.' | |
am__quote='' | |
am__tar='${AMTAR} chof - "$$tardir"' | |
am__untar='${AMTAR} xf -' | |
bindir='${exec_prefix}/bin' | |
build='x86_64-apple-darwin11.4.0' | |
build_alias='' | |
build_cpu='x86_64' | |
build_os='darwin11.4.0' | |
build_vendor='apple' | |
datadir='${datarootdir}' | |
datarootdir='${prefix}/share' | |
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' | |
dvidir='${docdir}' | |
exec_prefix='${prefix}' | |
host='x86_64-apple-darwin11.4.0' | |
host_alias='' | |
host_cpu='x86_64' | |
host_os='darwin11.4.0' | |
host_vendor='apple' | |
htmldir='${docdir}' | |
includedir='${prefix}/include' | |
infodir='${datarootdir}/info' | |
install_sh='${SHELL} /private/tmp/homebrew-graphviz-2.28.0-XSw4/graphviz-2.28.0/config/install-sh' | |
libdir='${exec_prefix}/lib' | |
libexecdir='${exec_prefix}/libexec' | |
localedir='${datarootdir}/locale' | |
localstatedir='${prefix}/var' | |
lt_ECHO='/bin/echo' | |
ltdl_LIBOBJS=' argz.o' | |
ltdl_LTLIBOBJS=' argz.lo' | |
mandir='${datarootdir}/man' | |
mkdir_p='$(top_builddir)/config/install-sh -c -d' | |
oldincludedir='/usr/include' | |
pdfdir='${docdir}' | |
prefix='/usr/local/Cellar/graphviz/2.28.0' | |
program_transform_name='s,x,x,' | |
psdir='${docdir}' | |
sbindir='${exec_prefix}/sbin' | |
sharedstatedir='${prefix}/com' | |
subdirs=' libltdl' | |
sys_symbol_underscore='yes' | |
sysconfdir='${prefix}/etc' | |
target_alias='' | |
## ----------- ## | |
## confdefs.h. ## | |
## ----------- ## | |
/* confdefs.h */ | |
#define PACKAGE_NAME "graphviz" | |
#define PACKAGE_TARNAME "graphviz" | |
#define PACKAGE_VERSION "2.28.0" | |
#define PACKAGE_STRING "graphviz 2.28.0" | |
#define PACKAGE_BUGREPORT "http://www.graphviz.org/" | |
#define PACKAGE_URL "" | |
#define GVPLUGIN_CONFIG_FILE "config6" | |
#define GVPLUGIN_VERSION 6 | |
#define DARWIN 1 | |
#define DARWIN_DYLIB "" | |
#define DEFAULT_FONTPATH "~/Library/Fonts:/Library/Fonts:/Network/Library/Fonts:/System/Library/Fonts" | |
#define PATHSEPARATOR ":" | |
#define NO_POSTSCRIPT_ALIAS 1 | |
#define DEFAULT_DPI 96 | |
#define BROWSER "open" | |
#define PACKAGE "graphviz" | |
#define VERSION "2.28.0" | |
#define YYTEXT_POINTER 1 | |
#define STDC_HEADERS 1 | |
#define HAVE_SYS_TYPES_H 1 | |
#define HAVE_SYS_STAT_H 1 | |
#define HAVE_STDLIB_H 1 | |
#define HAVE_STRING_H 1 | |
#define HAVE_MEMORY_H 1 | |
#define HAVE_STRINGS_H 1 | |
#define HAVE_INTTYPES_H 1 | |
#define HAVE_STDINT_H 1 | |
#define HAVE_UNISTD_H 1 | |
#define HAVE_STDARG_H 1 | |
#define HAVE_STDDEF_H 1 | |
#define HAVE_STDDEF_H 1 | |
#define HAVE_STDLIB_H 1 | |
#define HAVE_STDINT_H 1 | |
#define HAVE_FCNTL_H 1 | |
#define HAVE_SEARCH_H 1 | |
#define HAVE_GETOPT_H 1 | |
#define HAVE_PTHREAD_H 1 | |
#define HAVE_FLOAT_H 1 | |
#define HAVE_LIMITS_H 1 | |
#define HAVE_TERMIOS_H 1 | |
#define HAVE_ERRNO_H 1 | |
#define HAVE_TIME_H 1 | |
#define HAVE_UNISTD_H 1 | |
#define HAVE_FENV_H 1 | |
#define HAVE_STRING_H 1 | |
#define HAVE_STRINGS_H 1 | |
#define HAVE_INTTYPES_H 1 | |
#define HAVE_SETJMP_H 1 | |
#define HAVE_SYS_TIME_H 1 | |
#define HAVE_SYS_TIMES_H 1 | |
#define HAVE_SYS_TYPES_H 1 | |
#define HAVE_SYS_SELECT_H 1 | |
#define HAVE_SYS_SOCKET_H 1 | |
#define HAVE_SYS_STAT_H 1 | |
#define HAVE_SYS_MMAN_H 1 | |
#define HAVE_SYS_IOCTL_H 1 | |
#define HAVE_LANGINFO_H 1 | |
#define HAVE_LIBINTL_H 1 | |
#define HAVE_CRT_EXTERNS_H 1 | |
#define TIME_WITH_SYS_TIME 1 | |
#define HAVE_DIRENT_H 1 | |
#define HAVE__BOOL 1 | |
#define HAVE_FESETENV 1 | |
#define HAVE_ALLOCA_H 1 | |
#define HAVE_ALLOCA 1 | |
#define HAVE_LRAND48 1 | |
#define HAVE_DRAND48 1 | |
#define HAVE_SRAND48 1 | |
#define HAVE_SETMODE 1 | |
#define HAVE_SETENV 1 | |
#define HAVE_GETENV 1 | |
#define HAVE_GETRUSAGE 1 | |
#define HAVE_STRERROR 1 | |
#define HAVE_CBRT 1 | |
#define HAVE_VSNPRINTF 1 | |
#define HAVE_STRTOUL 1 | |
#define HAVE_STRTOLL 1 | |
#define HAVE_STRTOULL 1 | |
#define HAVE_UNAME 1 | |
#define HAVE_MEMSET 1 | |
#define HAVE_NL_LANGINFO 1 | |
#define HAVE_POW 1 | |
#define HAVE_SQRT 1 | |
#define HAVE_STRCHR 1 | |
#define HAVE_STRDUP 1 | |
#define HAVE_STRERROR 1 | |
#define HAVE_STRSTR 1 | |
#define HAVE__NSGETENVIRON 1 | |
#define HAVE_STRCASECMP 1 | |
#define HAVE_STRNCASECMP 1 | |
#define HAVE_STRCASESTR 1 | |
#define HAVE_DLFCN_H 1 | |
#define LT_OBJDIR ".libs/" | |
#define LT_MODULE_EXT ".so" | |
#define LT_MODULE_PATH_VAR "DYLD_LIBRARY_PATH" | |
#define LT_DLSEARCH_PATH "/usr/local/lib:/lib:/usr/lib" | |
#define HAVE_LIBDL 1 | |
#define HAVE_DLERROR 1 | |
#define HAVE_LIBDLLOADER 1 | |
#define error_t int | |
#define __error_t_defined 1 | |
#define HAVE_PRELOADED_SYMBOLS 1 | |
#define HAVE_LTDL 1 | |
#define HAVE_UNISTD_H 1 | |
#define HAVE_MACH_O_DYLD_H 1 | |
#define HAVE_DIRENT_H 1 | |
#define HAVE_CLOSEDIR 1 | |
#define HAVE_OPENDIR 1 | |
#define HAVE_READDIR 1 | |
#define HAVE_STRLCAT 1 | |
#define HAVE_STRLCPY 1 | |
#define LT_LIBEXT "a" | |
#define ENABLE_LTDL 1 | |
#define HAVE_LIBLTDL 1 | |
#define HAVE_TCL 1 | |
#define HAVE_TK_H 1 | |
#define HAVE_EXPAT_H 1 | |
#define HAVE_EXPAT 1 | |
#define HAVE_LIBXPMFORLEFTY 1 | |
#define HAVE_X11_INTRINSIC_H 1 | |
#define HAVE_X11_XAW_TEXT_H 1 | |
#define HAVE_LIBZ 1 | |
#define HAVE_DEFLATEBOUND 1 | |
#define HAVE_FREETYPE2 1 | |
#define HAVE_FONTCONFIG 1 | |
#define HAVE_QUARTZ 1 | |
#define HAVE_GD_GIF 1 | |
#define HAVE_LIBGD 1 | |
#define HAVE_GD_FREETYPE 1 | |
#define HAVE_GD_FONTCONFIG 1 | |
#define HAVE_GLUT 1 | |
#define HAVE_ICONV 1 | |
#define ICONV_CONST | |
#define HAVE_ICONV_H 1 | |
#define HAVE_ICONV_T_DEF 1 | |
#define HAVE_GD_PNG 1 | |
#define HAVE_LIBPNG 1 | |
#define HAVE_GD_JPEG 1 | |
#define HAVE_LIBJPEG 1 | |
#define SFDP 1 | |
#define ORTHO 1 | |
#define DIGCOLA 1 | |
#define HAVE_FILE_R 1 | |
#define HAVE_ERRNO_DECL 1 | |
#define HAVE_GETOPT_DECL 1 | |
#define HAVE_INTPTR_T 1 | |
configure: exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment