summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorpeter.ljunglof <peter.ljunglof@gu.se>2013-01-08 10:23:25 +0000
committerpeter.ljunglof <peter.ljunglof@gu.se>2013-01-08 10:23:25 +0000
commitf74155ef6ad6c757e7e81065a311557f4b7e8a00 (patch)
treee780c76e2627f1c3ec738be42d25bfff2fac879a /src
parent49022f584991d7f26daa559d10eaebc4bbc2aed2 (diff)
PGF installation instructions for Mac OSX
Diffstat (limited to 'src')
-rw-r--r--src/runtime/c/INSTALL13
1 files 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)