... ddraw.h ... d3d.h ... not found
fix--> get directx6_1-cyg.tar.gz from http://www.geocities.com/bpj1138/directx6_1-cyg.tar.gz
(referenced here)
... zlib.h ... zconf.h ... not found
fix--> copied files:
/usr/include/w32api> cp /usr/include/zlib.h .
/usr/include/w32api> cp /usr/include/zconf.h .
/usr/include/w32api>
Error: ... *LPDIRECTSOUNDCAPTURE8 ... *LPDIRECTSOUNDNOTIFY8 ... not found
fix--> /home/Owner/utils/clan/Sources/Sound/SoundProviders/Win32/soundprovider_recorder_directsound.h
(add this)
typedef struct IDirectSoundCapture *LPDIRECTSOUNDCAPTURE8;
typedef struct IDirectSoundNotify *LPDIRECTSOUNDNOTIFY8;
//typedef struct IDirectSoundCapture8 IDirectSoundCapture8,*LPDIRECTSOUNDCAPTURE8;
//typedef struct IDirectSoundNotify8 IDirectSoundNotify8,*LPDIRECTSOUNDNOTIFY8;
// LPDIRECTSOUNDCAPTURE8 dsoundcapture;
// LPDIRECTSOUNDNOTIFY8 notify;
(before this line)
class CL_SoundProvider_Recorder_DirectSound_Session : public CL_SoundProvider_Session, CL_Runnable
{
SoundProviders/Win32/soundprovider_recorder_directsound.cpp:44: error: `DirectSoundCaptureCreate8' undeclared
Fix--> rename function `DirectSoundCaptureCreate8' to `DirectSoundCaptureCreate' (no 8), and same for Notify
libtool: link: warning: undefined symbols not allowed in i686-pc-cygwin shared libraries
ar cru .libs/libclanNetwork.a IRC/irc_connection.o IRC/irc_connection_generic.o IRC/dcc_download.o
IRC/dcc_download_generic.o NetSession/inputsource_netpacket.o NetSession/netsession_generic.o
NetSession/netstream.o NetSession/outputsource_netstream.o NetSession/netpacket_generic.o
NetSession/netpacket.o NetSession/outputsource_netpacket.o NetSession/inputsource_netpacket_generic.o
NetSession/netstream_generic.o NetSession/netcomputer_generic.o NetSession/outputsource_netpacket_generic.o
NetSession/netcomputer.o NetSession/inputsource_netstream.o NetSession/netsession.o NetSession/netgroup.o
Socket/event_trigger_socket.o Socket/outputsource_socket.o Socket/ip_address_getaddr.o
Socket/socket_select.o Socket/ip_address.o Socket/inputsource_socket.o Socket/socket.o
Socket/ip_address_getsock.o Socket/socket_generic.o NetObjects/netobject_controller_generic.o
NetObjects/netobject_client_generic.o NetObjects/netobject_server_generic.o
NetObjects/netobject_controller.o NetObjects/netobject_server.o NetObjects/netobject_client.o
NetVariables/netvariables.o setupnetwork_win32.o
ranlib .libs/libclanNetwork.a
creating libclanNetwork.la
(cd .libs && rm -f libclanNetwork.la && ln -s ../libclanNetwork.la libclanNetwork.la)
make[2]: Leaving directory `/home/Owner/utils/clan/Sources/Network'
make[2]: Entering directory `/home/Owner/utils/clan/Sources'
make[2]: Nothing to be done for `all-am'.
make[2]: Leaving directory `/home/Owner/utils/clan/Sources'
make[1]: Leaving directory `/home/Owner/utils/clan/Sources'
Making all in Setup
make[1]: Entering directory `/home/Owner/utils/clan/Setup'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/Owner/utils/clan/Setup'
Making all in pkgconfig
make[1]: Entering directory `/home/Owner/utils/clan/pkgconfig'
make[1]: Leaving directory `/home/Owner/utils/clan/pkgconfig'
make[1]: Entering directory `/home/Owner/utils/clan'
make[1]: Nothing to be done for `all-am'.
make[1]: Leaving directory `/home/Owner/utils/clan'
Libraries have been installed in:
/usr/local/lib
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-LLIBDIR' linker flag
|