blob: d2f0fd222dadcb453e132c5fa6f0ddc2d1c4ad7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
$NetBSD: patch-ad,v 1.2 2001/08/23 04:26:55 jlam Exp $
--- Imakefile.orig Thu Sep 2 10:33:47 1999
+++ Imakefile
@@ -106,6 +106,11 @@
#define StartupSound myu.au
#endif /* i386BsdArchitecture && (i386FreeBsd || FreeBSDArchitecture) */
+/* NetBSD */
+#if defined(NetBSDArchitecture)
+#define StartupSound myu.au
+#endif /* NetBSDArchitecture */
+
#else /* USE_NETAUDIO */
/* netaudio (NCDaudio) */
@@ -143,7 +148,7 @@
LOCAL_LIBRARIES = XawClientLibs
# ifdef USE_XAW3D
DEPXAWLIB = $(USRLIBDIR)/libXaw3d.a
- XAWLIB = -lXaw3d
+ XAWLIB = ${LIBXAW}
# endif /* USE_XAW3D */
SYS_LIBRARIES = SoundLibrary -lm
|