diff plugins/ssl/Makefile.mingw @ 7056:c92dbccd7448

[gaim-migrate @ 7619] Update mingw makefiles for ssl plugin committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Tue, 30 Sep 2003 05:42:05 +0000
parents d3f8aa123372
children 2bc75d98af8b
line wrap: on
line diff
--- a/plugins/ssl/Makefile.mingw	Tue Sep 30 05:40:09 2003 +0000
+++ b/plugins/ssl/Makefile.mingw	Tue Sep 30 05:42:05 2003 +0000
@@ -22,6 +22,14 @@
 TARGET = ssl
 TARGET_NSS = ssl-nss
 
+NEEDED_DLLS =		$(NSS_DIR)/lib/nss3.dll \
+			$(NSS_DIR)/lib/nssckbi.dll \
+			$(NSS_DIR)/lib/softokn3.dll \
+			$(NSS_DIR)/lib/ssl3.dll \
+			$(NSPR_DIR)/lib/nspr4.dll \
+			$(NSPR_DIR)/lib/plc4.dll \
+			$(NSPR_DIR)/lib/plds4.dll
+
 # Compiler Options
 
 CFLAGS =
@@ -108,7 +116,7 @@
 install:
 	cp $(TARGET).dll $(DLL_INSTALL_DIR)
 	cp $(TARGET_NSS).dll $(DLL_INSTALL_DIR)
-
+	cp $(NEEDED_DLLS) $(GAIM_INSTALL_DIR)
 
 ##
 ## BUILD Dependencies
@@ -123,6 +131,7 @@
 
 $(TARGET).dll: $(OBJECTS) $(GAIM_TOP)/src/gaim.lib
 	$(CC) -shared $(OBJECTS) $(LIB_PATHS) $(LIBS) $(DLL_LD_FLAGS) -o $(TARGET).dll
+
 $(TARGET_NSS).dll: $(OBJECTS_NSS) $(GAIM_TOP)/src/gaim.lib
 	$(CC) -shared $(OBJECTS_NSS) $(LIB_PATHS) $(LIBS) $(DLL_LD_FLAGS) -o $(TARGET_NSS).dll