File: README.MacOSX

package info (click to toggle)
libapache2-mod-rivet 2.3.3-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 5,156 kB
  • ctags: 1,093
  • sloc: xml: 7,696; tcl: 6,939; ansic: 5,682; sh: 4,862; makefile: 199; sql: 91; lisp: 78
file content (38 lines) | stat: -rw-r--r-- 1,339 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

This document is probably obsolete. Anyone who will undertake the task of
porting Rivet on Macintosh is welcome to join us in the effort of supporting
Rivet for new plattforms. (mxmanghi: 2015-01-09)


$Id: README.MacOSX 1650416 2015-01-08 23:17:55Z mxmanghi $

Building Rivet isn't 100% turnkey under Mac OS X, but it's getting better
and hopefully it won't be too long until it builds without tweaking.

In the meantime, here's what we do:

Build and install tclsh8.4 and apache from darwinports, plus other stuff
like postgres.  Go get Pgtcl off of gborg.postgresql.org and get it built
and installed.  (If you want to use a SQL database, this is one way to go
about it, and we've had good results with it.)

Run the configure script:

tclsh8.4 ./configure.tcl -prefix /opt/local -with-apxs /opt/local/sbin/apxs -verbose -with-tclconfig /opt/local/lib/tclConfig.sh

It will complain about several undefined variables.

Edit configs.tcl and change

set ::configs::TCL_SHLIB_LD {}

to be

set ::configs::TCL_SHLIB_LD {cc -dynamiclib -undefined suppress -flat_namespace}
~                                                                               

tclsh8.4 make.tcl

tclsh8.4 make.tcl install
~                                                                               
~