mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 04:40:37 +00:00
* GNUmakefile: Build Documentation if doc=yes (yes by default).
* Tools/gsnd/GNUmakefile.postamble: Linke in pthreads if not already linked in (non-mingw targets only). * Tools/gsnd/portaudio/pa_unix_oss/pa_unix_oss.c: On OpenBSD include soundcard.h. * Panels/English.proj: Replace GSPageLayout.gorm and GSPrintPanel.gorm with updated GOrm dirs. Make Options button non-continuous. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@17261 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
43a0db4a87
commit
72d45dd40e
10 changed files with 459 additions and 70 deletions
|
@ -14,6 +14,11 @@ ifeq (mingw32, $(GNUSTEP_TARGET_OS))
|
|||
PA_OBJ_DIR = $(GNUSTEP_OBJ_DIR)/portaudio/pa_win_ds
|
||||
else
|
||||
PA_OBJ_DIR = $(GNUSTEP_OBJ_DIR)/portaudio/pa_unix_oss
|
||||
# Most often this is already included from gnustep-base but may not
|
||||
# be if libobjc is compiled without threads.
|
||||
ifeq ($(objc_threaded),)
|
||||
ADDITIONAL_TOOL_LIBS += -lpthread
|
||||
endif
|
||||
endif
|
||||
|
||||
before-all::
|
||||
|
|
|
@ -115,9 +115,13 @@ PaDriverInfo;
|
|||
#ifdef __FreeBSD__
|
||||
#include <sys/soundcard.h>
|
||||
#else
|
||||
#ifdef __OpenBSD__
|
||||
#include <soundcard.h>
|
||||
#else
|
||||
#include <machine/soundcard.h> /* JH20010905 */
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include "portaudio.h"
|
||||
#include "pa_host.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue