File: CONFIG

package info (click to toggle)
tclthread 20030827-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,284 kB
  • ctags: 526
  • sloc: ansic: 4,828; sh: 2,589; tcl: 888; makefile: 240; cpp: 31
file content (24 lines) | stat: -rw-r--r-- 607 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
#
# You may add --enable-symbols when compiling 
# with debugging symbols. For list of other 
# supported options to configure, run
#   ../configure --help 
#

CC=gcc; export CC

sh ../configure --enable-symbols --enable-threads

# 
# For AOLserver, you might want to use this command.
# Just uncomment following two command lines below.
# You should modify the "--with-aolserver" directive
# if your AOLserver directory does not match.
# This will build the extension as AOLserver module. 
#

#sh ../configure --enable-threads --enable-symbols \
#    --with-aolserver=/usr/local/aolserver

# EOF