Support for building shared libraries on Cygwin

This commit is contained in:
jjgarcia 2005-05-13 11:39:22 +00:00
parent a43ccfe457
commit e86a9c3ea6
2 changed files with 7 additions and 7 deletions

6
src/aclocal.m4 vendored
View file

@ -214,10 +214,10 @@ case "${host_os}" in
;;
cygwin*)
thehost='cygwin'
shared='no'
shared='yes'
THREAD_OBJ=''
SHARED_LDFLAGS=''
BUNDLE_LDFLAGS=''
SHARED_LDFLAGS="-shared ${LDFLAGS}"
BUNDLE_LDFLAGS="-shared ${LDFLAGS}"
SHAREDPREFIX=''
SHAREDEXT='dll'
;;

8
src/configure vendored
View file

@ -1,5 +1,5 @@
#! /bin/sh
# From configure.in Revision.
# From configure.in Revision: 1.99 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for ecl 0.9e.
#
@ -3472,10 +3472,10 @@ case "${host_os}" in
;;
cygwin*)
thehost='cygwin'
shared='no'
shared='yes'
THREAD_OBJ=''
SHARED_LDFLAGS=''
BUNDLE_LDFLAGS=''
SHARED_LDFLAGS="-shared ${LDFLAGS}"
BUNDLE_LDFLAGS="-shared ${LDFLAGS}"
SHAREDPREFIX=''
SHAREDEXT='dll'
;;