From 168d39bf6dbd1fc562e7f709316178e5cbd7fa73 Mon Sep 17 00:00:00 2001 From: "peter.ljunglof" Date: Tue, 8 Jan 2013 10:23:25 +0000 Subject: [PATCH] PGF installation instructions for Mac OSX --- src/runtime/c/INSTALL | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/runtime/c/INSTALL b/src/runtime/c/INSTALL index a11d2dbe7..a86006341 100644 --- a/src/runtime/c/INSTALL +++ b/src/runtime/c/INSTALL @@ -15,10 +15,15 @@ grammar you also have to add the option '-literal=Symb' while compiling. Note For Mac OSX users ---------------------- -You have to comment out the following line in config.h: +The following is what I did to make it work on MacOSX 10.8: - #define HAVE_STATEMENT_EXPRESSIONS 1 +- Install XCode and XCode command line tools +- Install Homebrew: http://mxcl.github.com/homebrew/ -This has to be done AFTER you have called './configure', but before you call 'make'! +$ brew install automake autoconf libtool +$ glibtoolize +$ autoreconf -i +$ ./configure +$ make +$ make install -(Tested on Mac OSX 10.8 Mountain Lion with XCode installed)