summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-04-24 16:23:31 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-04-24 16:23:31 (GMT)
commit78693b91d01c3a0ee1a20df0f19dc4b63839484b (patch)
treea1f8c65da6dea20fafdee02e516284798b852630 /unix
parent73ed1b3d2cdeffe239f2f4b5237cac1a661516b6 (diff)
downloadblt-78693b91d01c3a0ee1a20df0f19dc4b63839484b.zip
blt-78693b91d01c3a0ee1a20df0f19dc4b63839484b.tar.gz
blt-78693b91d01c3a0ee1a20df0f19dc4b63839484b.tar.bz2
add tls
Diffstat (limited to 'unix')
-rw-r--r--unix/Makefile.in3
-rwxr-xr-xunix/configure3
-rwxr-xr-xunix/configure.ac2
3 files changed, 7 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 1464ef0..749e592 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -12,6 +12,7 @@ mandir = @mandir@
OS = @OS@
ARCH = @ARCH@
TKFLAGS = @TKFLAGS@
+TLSFLAGS = @TLSFLAGS@
JOBS = @CORES@
include ./make.include
@@ -26,7 +27,7 @@ CACHE = --config-cache --cache-file=$(prefix)/config.cache
saods9 : dirs tcl tk \
tclcheckdns tcliis tclsignal \
- tclzvfs tclxml xpa \
+ tclzvfs tls tclxml xpa \
tkblt tktable tkimg \
tkmpeg tkhtml1 tkcon \
tksao ds9
diff --git a/unix/configure b/unix/configure
index f341653..1a89e2d 100755
--- a/unix/configure
+++ b/unix/configure
@@ -584,6 +584,7 @@ PACKAGE_URL=''
ac_subst_vars='LTLIBOBJS
LIBOBJS
CORES
+TLSFLAGS
TKFLAGS
ARCH
OS
@@ -1895,6 +1896,8 @@ case $system in
Darwin* )
TKFLAGS="--disable-corefoundation"
+ TLSFLAGS="--with-ssl-dir=/opt/local"
+
CORES=`sysctl -n "hw.ncpu"`
;;
diff --git a/unix/configure.ac b/unix/configure.ac
index cded3d7..b16de8d 100755
--- a/unix/configure.ac
+++ b/unix/configure.ac
@@ -50,6 +50,8 @@ case $system in
Darwin* )
TKFLAGS="--disable-corefoundation"
AC_SUBST(TKFLAGS)
+ TLSFLAGS="--with-ssl-dir=/opt/local"
+ AC_SUBST(TLSFLAGS)
CORES=`sysctl -n "hw.ncpu"`
;;