Windows Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsOperating SystemsWindows Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old March 17th, 2013, 09:19 PM
RyomaSJibenG RyomaSJibenG is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2012
Posts: 4 RyomaSJibenG User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 1 m 56 sec
Reputation Power: 0
Library problem

hello there everyone, to be honest i'm not sure if this topic are supposed to be here, if its not then move it to somewhere appropriate

regardless, here's the problem

i am using windows 7 and recently downloaded jpeglib and libexif from sourceforge.net

the problem is how do i install/set path to these two libraries

Reply With Quote
  #2  
Old March 18th, 2013, 12:41 AM
salem's Avatar
salem salem is offline
Contributed User
Click here for more information
 
Join Date: Jun 2005
Posts: 3,840 salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)  Folding Points: 153 Folding Title: Novice Folder
Time spent in forums: 2 Months 3 Weeks 2 Days 20 h 12 m 30 sec
Reputation Power: 1774
Well it might be useful if you told us which programming language you're using, so it could be moved to a better forum.
__________________
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
If at first you don't succeed, try writing your phone number on the exam paper

Reply With Quote
  #3  
Old March 18th, 2013, 07:02 AM
RyomaSJibenG RyomaSJibenG is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2012
Posts: 4 RyomaSJibenG User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 1 m 56 sec
Reputation Power: 0
oh its C/C++

sorry bout that but if you happen to know how to solve the problem then i'll be very thankful

Reply With Quote
  #4  
Old March 18th, 2013, 01:58 PM
salem's Avatar
salem salem is offline
Contributed User
Click here for more information
 
Join Date: Jun 2005
Posts: 3,840 salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)  Folding Points: 153 Folding Title: Novice Folder
Time spent in forums: 2 Months 3 Weeks 2 Days 20 h 12 m 30 sec
Reputation Power: 1774
Quote:
Originally Posted by exif README-Win32.txt
If this is a combined source/binary distribution tree, then you can find

* the binary DLL in the subdirectory binary/bin/
* the include files in the subdirectory binary/include/

As for building libexif yourself on or for Win32, you can

a) hack yourself a build system somehow
This seems to be the Windows way of doing things.
b) Use MinGW32

If you use MinGW32 (including MSYS) on Windows, building libexif should
follow the usual pattern of

./configure
make
make install

as for any Unix like system and you can just follow the general
instructions.

Something neat to do is to use a MinGW32 cross compiler on a Unix
system (Debian ships one for example). Then you can run

./configure --host=i586-mingw32msvc --disable-nls
make
make install

If you want to build a combined source/binary distribution tarball/zipfile,
then add the --enable-ship-binaries option to the ./configure command line.


Not much help I'm afraid.
You could search the maillist archive and maybe ask a question or two when you're done searching.

Reply With Quote
  #5  
Old March 20th, 2013, 01:23 AM
RyomaSJibenG RyomaSJibenG is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2012
Posts: 4 RyomaSJibenG User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 1 m 56 sec
Reputation Power: 0
it works, i'm quite happy i manage to get the library however the library is in .A while i need it to be in either .dll or .lib

i already did my search on google on how to convert from .A to .dll and i found this:

"Place your rename your file from .A to .lib, place it along with the source files of the project.

Now go to project's properties and in the vc++ include directories add the path of the header/include files for that lib."


stackoverflow.com/questions/4396294/how-to-use-a-lib-files-with-visual-studio-2008

and it doesn't work

i'm using visual studion 2010 by the way

Reply With Quote
Reply

Viewing: Dev Shed ForumsOperating SystemsWindows Help > Library problem

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap