WIN32 with threads

This commit is contained in:
Vitor Santos Costa
2014-03-06 13:34:35 +00:00
parent 386e15c425
commit 47d436fc13
6 changed files with 17 additions and 11 deletions

1
packages/bdd/Makefile.in Normal file → Executable file
View File

@@ -64,6 +64,7 @@ install: all install-examples
mkdir -p $(DESTDIR)$(SHAREDIR)
for h in $(BDD_PROLOG); do $(INSTALL_DATA) $$h $(DESTDIR)$(SHAREDIR); done
$(INSTALL_PROGRAM) $(SOBJS) $(DESTDIR)$(YAPLIBDIR)
@WINDOWS@ $(INSTALL_PROGRAM) @CUDD_LDFLAGS@ $(DESTDIR)$(BINDIR)
install-examples:

5
packages/bdd/configure.in Normal file → Executable file
View File

@@ -50,10 +50,11 @@ elif test -d "$cudd_dir/lib"; then
LIBS="$LIBS -L $cudd_dir/lib"
fi
if test $i_am_cross_compiling = yes
if test "$target_os" = "mingw32" -o "$target_os" = "mingw64"
then
#mingw: we know where things are
CUDD_LDFLAGS="-L $cudd_dir/lib -lall_cudd"
CUDD_LDFLAGS="$cudd_dir/lib/all_cudd.dll"
cudd_installed="yes"
else
if test -d "$cudd_dir/util"; then