GTK+ Forums Forum Index GTK+ Forums
Discussion forum for GTK+ and Programming. Ask questions, troubleshoot problems, view and post example code, or express your opinions.
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

libpangowin32-1.0-0.dll gimp fails

 
Post new topic   Reply to topic    GTK+ Forums Forum Index -> General GTK+ Discussion
Author Message
classicalgeek



Joined: 13 Mar 2008
Posts: 1

PostPosted: Thu Mar 13, 2008 1:16 am    Post subject: libpangowin32-1.0-0.dll gimp fails Reply with quote

:cry: When I attempt to run gimp on windoze xp, most things fai to loadl due to a problem with linpangowin32-1.0-0.dll. I notice that the following file: libpangowin32-1.0-0.dll.off is in the system32 folder - does this block the correct dll? Also I run a number of other programs which use this dll including freeciv (latest stable) and others, could the differing versions used by these programs be causing the failure? I have struggled with this problem for over a year by upgrading gtk & gimp as soon as new releases are available, but to no avail. HEEELLLP!
Back to top
dreblen
Familiar Face


Joined: 14 Jun 2007
Posts: 38

PostPosted: Thu Mar 13, 2008 4:57 pm    Post subject: Reply with quote

what is the problem? Is it not finding the file or not finding an entry point? Does GIMP start and crash or start and look ugly?
If GIMP starts, but crashes or has visual issues, try compiling this program and running it both in the GIMP bin/ folder, and somewhere else (like on your desktop) to see if there is a different version:
EDIT: The program now checks all available version info
Code: (C)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <stdio.h>
#include <gtk/gtk.h>

int main(int argc, char **argv)
{
     /* GLib */
     
printf("GLib:\n");
     printf("\tCompiled: %d.%d.%d\n", GLIB_MAJOR_VERSION,\
                                      GLIB_MINOR_VERSION,\
                                      GLIB_MICRO_VERSION);
     printf("\tLinked: %d.%d.%d\n", glib_major_version,\
                                      glib_minor_version,\
                                     glib_micro_version);
    /* Pango */
   
printf("Pango:\n");
    printf("\tCompiled: %s\n", PANGO_VERSION_STRING);
    printf("\tLinked: %s\n", pango_version_string());
    /* GdkPixbuf */
   
printf("GdkPixbuf:\n");
    printf("\tCompiled: %s\n", GDK_PIXBUF_VERSION);
    printf("\tLinked: %s\n", gdk_pixbuf_version);
    /* GTK */
   
printf("GTK:\n");
    printf("\tCompiled: %d.%d.%d\n", GTK_MAJOR_VERSION,\
                                      GTK_MINOR_VERSION,\
                                      GTK_MICRO_VERSION);
     printf("\tLinked: %d.%d.%d\n", gtk_major_version,\
                                      gtk_minor_version,\
                                     gtk_micro_version);
     
     return 0;
}
Back to top
Display posts from previous:   
Post new topic   Reply to topic    GTK+ Forums Forum Index -> General GTK+ Discussion All times are GMT
Page 1 of 1

 


Powered by phpBB © 2001, 2005 phpBB Group
CodeBB 1.0 Beta 2
Protected by Anti-Spam ACP