summaryrefslogtreecommitdiff
path: root/lang/elk/patches/patch-ac
blob: 50dc0f24c2f682444090509993cd9c1cf2af98e4 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
$NetBSD: patch-ac,v 1.3 2002/09/23 08:45:43 jlam Exp $

--- config/sites/pkgsrc.orig	Sun Jan  6 13:39:38 2002
+++ config/sites/pkgsrc
@@ -0,0 +1,79 @@
+# This is a shell script.  It is sourced by the build scripts in the
+# various subdirectories to gather site- and installation-specific
+# information required for building the Makefiles.
+#
+# This script is read after the "system" file, therefore you can place
+# variable settings here to override those from "system".
+#
+# Some variables in this script are interpreted as boolean variables and
+# indicate presence or absence of one specific feature.  The value "yes"
+# is regarded as "true", all other values (including no value or even
+# non-existence of the variable) are interpreted as "false".
+#
+# Do not forget to quote values that contain shell meta syntax.
+#
+# -----------------------------------------------------------------------
+
+
+# The directory where all files are installed by running "make install".
+# The subdirectories bin, lib, include, and runtime (with various
+# subdirectories) are created automatically, but $install_dir isn't.
+# Make sure $install_dir doesn't point to the top of the source tree
+# (i.e. choose a subdirectory or a directory outside the source tree).
+
+install_dir=${PREFIX}/lib/elk
+
+
+# Libraries against which to link the X11 extension (typically -lX11).
+#
+# Any of the following library lists may be prefixed by something like
+# -L/usr/X11/lib if the X-libraries do not reside in a standard directory;
+# an additional -R/usr/X11/lib and -lsocket may be required in case of
+# SunOS 5.x/SysVR4).
+
+libxlib="${X11_LDFLAGS} -lX11"
+
+# Libraries against which to link the Xt extension (typically
+# -lXaw -lXmu -lXt -lSM -lICE -lXext -lX11).  -lXaw is needed to get the correct
+# definition of the vendor shell widget class
+
+libxt="${X11_LDFLAGS} -lX11 -lXext -lICE -lSM -lXt -lXmu ${LIBXAW}"
+
+# Libraries against which to link the Athena widgets extension (typically
+# identical to libxt above)
+
+libxaw="${X11_LDFLAGS} -lX11 -lXext -lICE -lSM -lXt -lXmu ${LIBXAW}"
+
+
+# Libraries against which to link the Motif extension (typically like
+# libaw above with Xaw replaced by Xm)
+
+libxmotif="${X11_LDFLAGS} -lX11 -lXext -lICE -lSM -lXt -lXmu ${MOTIFLIB}"
+
+
+# Additional flags (typically -Isomething) to be supplied to the C
+# compiler when compiling an X11 application, or a Motif application,
+# respectively.
+
+x11_incl=${CPPFLAGS}
+motif_incl=${CPPFLAGS}
+
+
+# Set "gdbm" to "yes" if you have the GNU gdbm library installed and
+# want the gdbm extension to be compiled.  "gdbm_inc" gives additional
+# C compiler flags required to compile a program using gdbm.
+
+gdbm=
+gdbm_incl=${CPPFLAGS}
+
+
+# Do you want to use the generational garbage collector?  If not, the
+# stop-and-copy garbage collector will be used.
+
+generational_gc=yes
+
+
+# The default heap size of the Scheme interpreter in KBytes (if the
+# stop-and-copy garbage collector is used).
+
+default_heap_size=1024