# HG changeset patch # User Daniel Atallah # Date 1157422157 0 # Node ID 74cdcd0c58b5e1168a9d4c5f5f08a79079a98442 # Parent 8783ae8f649a7cb9263f9acb3444286f40c33c61 [gaim-migrate @ 17163] Make Gaim::Gtk actually work in wingaim. committer: Tailor Script diff -r 8783ae8f649a -r 74cdcd0c58b5 gtk/plugins/perl/common/Makefile.mingw --- a/gtk/plugins/perl/common/Makefile.mingw Mon Sep 04 23:26:50 2006 +0000 +++ b/gtk/plugins/perl/common/Makefile.mingw Tue Sep 05 02:09:17 2006 +0000 @@ -89,10 +89,10 @@ $(MAKE) -C $(GAIM_LIB_PERL_TOP)/common -f $(GAIM_WIN32_MAKEFILE) install install: all $(GAIM_INSTALL_PERLMOD_DIR)/Gaim.pm - rm -f $(GAIM_INSTALL_PERLMOD_DIR)/Gaim/$(TARGET).dll $(GAIM_INSTALL_PERLMOD_DIR)/Gaim/$(TARGET).pm + rm -f $(GAIM_INSTALL_PERLMOD_DIR)/$(TARGET).dll $(GAIM_INSTALL_PERLMOD_DIR)/Gaim/$(TARGET).pm mkdir -p $(GAIM_INSTALL_PERLMOD_DIR)/Gaim cp $(TARGET).pm $(GAIM_INSTALL_PERLMOD_DIR)/Gaim/ - cp $(TARGET).dll $(GAIM_INSTALL_PERLMOD_DIR)/Gaim/ + cp $(TARGET).dll $(GAIM_INSTALL_PERLMOD_DIR) $(C_FILES): $(GAIM_CONFIG_H) diff -r 8783ae8f649a -r 74cdcd0c58b5 libgaim/plugins/perl/scripts/request.pl --- a/libgaim/plugins/perl/scripts/request.pl Mon Sep 04 23:26:50 2006 +0000 +++ b/libgaim/plugins/perl/scripts/request.pl Tue Sep 05 02:09:17 2006 +0000 @@ -5,7 +5,7 @@ # All the information Gaim gets about our nifty plugin %PLUGIN_INFO = ( perl_api_version => 2, - name => " Perl: $MODULE_NAME", + name => "Perl: $MODULE_NAME", version => "0.1", summary => "Test plugin for the Perl interpreter.", description => "Implements a set of test proccedures to ensure all functions that work in the C API still work in the Perl plugin interface. As XSUBs are added, this *should* be updated to test the changes. Furthermore, this will function as the tutorial perl plugin.",