Skip to content

Commit

Permalink
Use dynamic library & xpidl_module names from nmake build for win32 g…
Browse files Browse the repository at this point in the history
…make builds for compatibility.

bug #58981 sr=jag
  • Loading branch information
seawood%netscape.com committed Jan 16, 2002
1 parent 779c8ec commit 63ffc67
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dbm/src/Makefile.in
Expand Up @@ -29,6 +29,10 @@ include $(DEPTH)/config/autoconf.mk
LIBRARY_NAME = mozdbm_s
LIB_IS_C_ONLY = 1

ifeq ($(OS_ARCH),WINNT)
LIBRARY_NAME = dbm$(MOZ_BITS)
endif

CSRCS = \
db.c \
h_bigkey.c \
Expand Down
4 changes: 4 additions & 0 deletions dbm/tests/Makefile.in
Expand Up @@ -31,7 +31,11 @@ PROGRAM = lots$(BIN_SUFFIX)

CSRCS = lots.c

ifeq ($(OS_ARCH),WINNT)
EXTRA_DSO_LIBS = dbm$(MOZ_BITS)
else
EXTRA_DSO_LIBS = mozdbm_s
endif

LIBS = $(EXTRA_DSO_LIBS)

Expand Down

0 comments on commit 63ffc67

Please sign in to comment.