Skip to content

Commit

Permalink
* build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cannam committed Aug 16, 2004
1 parent 2f31133 commit e55686b
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ EXES = dssi-vst-server.exe dssi-vst-scanner.exe dssi-vst_gui.ex
DEFINES =
DLL_PATH =
LIBRARY_PATH = -L.
LIBRARIES = remoteplugin
LIBRARIES = remoteplugin asound


### dssi-vst-server.exe sources and settings
Expand Down Expand Up @@ -202,4 +202,4 @@ dssi-vst_gui.o: remoteplugin.h remotepluginserver.h libremoteplugin.a
dssi-vst-scanner.o: remoteplugin.h remotepluginserver.h libremoteplugin.a

dssi-vst.so: remoteplugin.h remotepluginclient.h libremoteplugin.a dssi-vst.cpp remotevstclient.o
g++ -shared -Wl,-Bsymbolic -g3 -Wall -o dssi-vst.so dssi-vst.cpp remotevstclient.o -L. -lremoteplugin
g++ -shared -Wl,-Bsymbolic -g3 -Wall -o dssi-vst.so dssi-vst.cpp remotevstclient.o -L. -lremoteplugin -lasound
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -424,9 +424,9 @@ LIBS="$WINE_LIBRARY_PATH $LIBS"
AC_CHECK_LIB(wine_unicode,wine_cp_wcstombs,[],[
AC_MSG_ERROR([Could not find the Wine dlls (libwine_unicode.so)])
])
AC_CHECK_LIB(wine_uuid,IID_IUnknown,[],[
AC_MSG_ERROR([Could not find the Wine dlls (libwine_uuid.so)])
])
#AC_CHECK_LIB(wine_uuid,IID_IUnknown,[],[
# AC_MSG_ERROR([Could not find the Wine dlls (libwine_uuid.so)])
#])

LIBS="$save_LIBS"

Expand Down
1 change: 1 addition & 0 deletions dssi-vst-scanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include <fcntl.h>
#include <sys/un.h>
#include <dirent.h>
#include <unistd.h>

#define WIN32_LEAN_AND_MEAN
#include <windows.h>
Expand Down
1 change: 1 addition & 0 deletions dssi-vst_gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <sys/socket.h>
#include <fcntl.h>
#include <sys/un.h>
#include <unistd.h>

#include <lo/lo.h>
#include <lo/lo_lowlevel.h>
Expand Down
1 change: 1 addition & 0 deletions rdwrops.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "rdwrops.h"

#include <errno.h>
#include <unistd.h>


extern void
Expand Down
2 changes: 1 addition & 1 deletion remotepluginclient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
#include <sys/time.h>
#include <sys/stat.h>
#include <fcntl.h>

#include <time.h>
#include <unistd.h>
#include <iostream>

#include "rdwrops.h"
Expand Down
1 change: 1 addition & 0 deletions remotepluginserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include <sys/stat.h>
#include <sys/poll.h>
#include <fcntl.h>
#include <unistd.h>

#include <time.h>
#include <iostream>
Expand Down
1 change: 1 addition & 0 deletions remotevstclient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include <fcntl.h>
#include <iostream>
#include <dirent.h>
#include <unistd.h>

#include "rdwrops.h"
#include "paths.h"
Expand Down

0 comments on commit e55686b

Please sign in to comment.