Re: DLLs required on windows?



what errors are you getting?
Jeffrey
On Saturday 18 January 2003 18:02, Hammamur Rahman wrote:
Hi, i went to the website http://www.dropline.net/gtk, which i didn't know
existed.  As you had some very good instructiions on how to setup gtk+ 2 i
used these .  I downloaded and setted up mingw and not the dev-c++ stated
in the website.  I then used the GTK+ Development Environment 2.2.0.exe
file to setup the gtk+ folders and files within the mingw folder as stated
in the website.  I produced the following make file by editing my previous
one to compile my program, there seems to be something wrong with it as it
is coming with error messages.  I am not very good with makefiles, my
previous one was a copy of someone elses.  Could you tell me what is wrong.

***********************************************************


# Compiler
CC=gcc
# Parameters given to the compiler
CFLAGS=-s -mwindows -mno-cygwin -fnative-struct -I"\gtk-2.0"
-I"\gtkdeps-2.0" -I"\gtk-2.0\include" -I"\atk-1.0" -I"\pango-1.0"
-I"\glib-2.0" -I"\glib-2.0" -I"\glib-2.0\include"

BFLAGS=-lgtk-win32-2.0 -lgdk-win32-2.0 -lgthread-2.0 -lgdi32 -lole32 -luuid
-latk-1.0 -lgdk_pixbuf-2.0 -lpangowin32-1.0 -lgdi32 -lpango-1.0
-lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -liconv

# name of your output file #
OUTPUT="duv.exe"

# source files #
SRCS="duv.c" "dir_stack.c" "quota_info.c"

# object files #
OBJS="duv.o" "dir_stack.o" "quota_info.o"

# Standard targets
duv.exe:
      $(CC) -c $(SRCS) $(CFLAGS)
      $(CC) -o $(OBJS) $(BFLAGS)

test: all
      ./$(OUTPUT)

clean:
      del *.o

**********************************************************************

Thank you!


From: Todd Kulesza <todd dropline net>

To: Hammamur Rahman <HRahman10 hotmail com>
CC: gtk-app-devel-list gnome org
Subject: Re: DLLs required on windows?
Date: Sat, 18 Jan 2003 14:57:34 -0500

You need DLLs, but not in the system folder.  I've created a pair of GTK+
Win32 installers, one for developers, one for users, that automatically
install the required files.  You can find them (along with instructions
and sample source code) at http://www.dropline.net/gtk.

Todd

Hammamur Rahman wrote:
Hi!,
 I wanted to know, once you have produced a application, to run the
application to you have to install any dll files in the system folders in
windows?
 Thank You!

_______________________________________________
gtk-app-devel-list mailing list
gtk-app-devel-list gnome org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

_________________________________________________________________
Add photos to your e-mail with MSN 8. Get 2 months FREE*.
http://join.msn.com/?page=features/featuredemail

_______________________________________________
gtk-app-devel-list mailing list
gtk-app-devel-list gnome org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]