diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-03-16 11:35:48 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-03-16 11:35:48 +0000 |
commit | 570b4c3b596f367dc2495fd7a64937fb894758d1 (patch) | |
tree | 2b9bc7f5dd45eab7261dcc8e72bb714bfc535ddd | |
parent | 333c21b8cc0e6eeedbd5769bdf450ded2b02d24f (diff) |
as Pascal Gaudette pointed out, the ldap files were missing
-rw-r--r-- | lib/Makefile.vc6 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6 index e7db08e56..4d91a1c65 100644 --- a/lib/Makefile.vc6 +++ b/lib/Makefile.vc6 @@ -53,7 +53,8 @@ RELEASE_OBJS= \ uploadr.obj \
urlr.obj \
filer.obj \
- versionr.obj
+ versionr.obj \
+ ldapr.obj
DEBUG_OBJS= \
base64d.obj \
@@ -199,6 +200,8 @@ filer.obj: file.c $(CCR) $(CFLAGS) file.c
versionr.obj: version.c
$(CCR) $(CFLAGS) version.c
+ldapr.obj: ldap.c
+ $(CCR) $(CFLAGS) ldap.c
## Debug
base64d.obj: base64.c
|