* 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:
Adam Fedor 2003-07-20 02:08:22 +00:00
parent 43a0db4a87
commit 72d45dd40e
10 changed files with 459 additions and 70 deletions

View file

@ -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::

View file

@ -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"