kingctan / musicip-libofa

Automatically exported from code.google.com/p/musicip-libofa
0 stars 0 forks source link

compiling example on win32 #2

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. extract libofa-0.9.3-win32.zip
2. open example in visual studio 2005
3. try compile.

What is the expected output? What do you see instead?
I expect it to compile, i get "cannot find expat.h" error

What version of the product are you using? On what operating system?
visual studio 2005 libofa-0.9.3-win32 winxp

Please provide any additional information below.
The problem seems to be in example/protocol.cpp in lines 
#include <expat.h>
#include <curl/curl.h>
#include <curl/types.h>
#include <curl/easy.h>

they seem to need to be ..
#include "expat/expat.h"
#include "curl/curl.h"
#include "curl/types.h"
#include "curl/easy.h"

Thanks.

Original issue reported on code.google.com by StephenNancekivell@gmail.com on 12 Sep 2008 at 3:36