summaryrefslogtreecommitdiff
path: root/project/config/cfgdefs.sh
blob: 61482d359b358cb317357c84f8d2cbf9d914222a (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
# in projects where [ $mb_use_custom_cfgdefs = yes ],
# cfgdefs.sh is invoked from within ./configure via
# . $mb_project_dir/project/cfgdefs.sh

# a successful return from cfgdefs.sh will be followed
# by a second invocation of the config_copy() function,
# reflecting any changes to common config variables
# made by cfgdefs.sh.

# finally, cfgdefs.sh may update the contents of the
# config-time generated cfgdefs.mk.


# cfgdefs helper functions
. "$mb_project_dir/project/config/cfghost.sh"


# sofort's config test framework
. "$mb_project_dir/sofort/cfgtest.sh"


for arg ; do
	case "$arg" in
		*)
			error_msg ${arg#}: "unsupported config argument."
			exit 2
	esac
done


cfgdefs_set_cfghost_flavors()
{
	cfghost_set_target_cfghost
	cfghost_set_native_cfghost
}


cfgdefs_detect_python_version()
{
	mb_internal_verinfo=$(mktemp)

	if [ -z "$mb_internal_verinfo" ]; then
		exit 2
	fi

	"$mb_native_cc" -E -dM "$mb_source_dir/Include/patchlevel.h" \
		> "$mb_internal_verinfo"

	python_major=$(grep '#define PY_MAJOR_VERSION ' "$mb_internal_verinfo" | cut -d' ' -f3)
	python_minor=$(grep '#define PY_MINOR_VERSION ' "$mb_internal_verinfo" | cut -d' ' -f3)
	python_micro=$(grep '#define PY_MICRO_VERSION ' "$mb_internal_verinfo" | cut -d' ' -f3)

	if [ -z "$python_major" ] || [ -z "$python_minor" ] || [ -z "$python_micro" ]; then
		error_msg "Could not properly parse Python's patchlevel.h"
		exit 2
	fi

	python_ver="$python_major.$python_minor"

	[ -z "$mb_package"  ] && mb_package='python'"$python_ver"
	[ -z "$mb_nickname" ] && mb_nickname="$mb_package"
	[ -z "$mb_pkgname"  ] && mb_pkgname="$mb_package"
	[ -z "$mb_pkgdesc"  ] && mb_pkgdesc="$mb_package"
}


cfgdefs_output_custom_defs()
{
	sed \
			-e 's/@python_ver@/'"$python_ver"'/g'       \
			-e 's/@python_major@/'"$python_major"'/g'   \
			-e 's/@python_minor@/'"$python_minor"'/g'   \
			-e 's/@python_micro@/'"$python_micro"'/g'   \
		"$mb_project_dir/project/config/cfgdefs.in"         \
			>> "$mb_pwd/cfgdefs.mk"
}


cfgdefs_perform_common_tests()
{
	# headers
	cfgtest_header_absence  'stropts.h'
	cfgtest_header_presence 'stdatomic.h'
	cfgtest_header_presence 'endian.h'
	cfgtest_header_presence 'net/if.h'
	cfgtest_header_presence 'sched.h'
	cfgtest_header_presence 'sys/ioctl.h'
	cfgtest_header_presence 'sys/sendfile.h'
	cfgtest_header_presence 'sys/syscall.h'
	cfgtest_header_presence 'sys/sysmacros.h'
	cfgtest_header_presence 'sys/uio.h'
	cfgtest_header_presence 'sys/xattr.h'

	# interfaces
	mb_cfgtest_headers='sys/epoll.h'
	cfgtest_interface_presence 'epoll_create1'

	mb_cfgtest_headers='sched.h'
	cfgtest_interface_presence 'sched_get_priority_max'
	cfgtest_interface_presence 'sched_rr_get_interval'
	cfgtest_interface_presence 'sched_setaffinity'
	cfgtest_interface_presence 'sched_setparam'
	cfgtest_interface_presence 'sched_setscheduler'

	mb_cfgtest_headers='sys/sendfile.h'
	cfgtest_interface_presence 'sendfile'

	# getrandom: easier to simply test,
	# than to test whether we need to test
	# (and then test).
	mb_cfgtest_headers='sys/syscall.h'

	if cfgtest_decl_presence 'SYS_getrandom'; then
		cfgtest_cflags_append '-DHAVE_GETRANDOM_SYSCALL'
	fi

	# ncurses
	cfgtest_newline
	cfgtest_comment 'ncurses/ncursesw'
	mb_cfgtest_headers='ncurses.h'

	if [ $mb_cfgtest_cfgtype = 'target' ]; then
		mb_cfgtest_makevar='CFLAGS_NCURSES'
	else
		mb_cfgtest_makevar='NATIVE_CC_CFLAGS'
	fi

	cfgtest_unit_header_presence 'curses.h'
	cfgtest_unit_header_presence 'ncurses.h'

	cfgtest_unit_header_presence 'ncurses/panel.h'  && mb_panel_wrapper='yes'
	cfgtest_unit_header_presence 'ncursesw/panel.h' && mb_panel_wrapper='yes'

	if cfgtest_unit_interface_presence 'is_term_resized'; then
		cfgtest_makevar_append '-DHAVE_CURSES_IS_TERM_RESIZED'
	fi

	if cfgtest_unit_interface_presence 'resizeterm'; then
		cfgtest_makevar_append '-DHAVE_CURSES_RESIZETERM'
	fi

	if cfgtest_unit_interface_presence 'resize_term'; then
		cfgtest_makevar_append '-DHAVE_CURSES_RESIZE_TERM'
	fi

	# ncursesw
	if cfgtest_unit_interface_presence 'mvwget_wch'; then
		cfgtest_makevar_append '-DHAVE_NCURSESW'
	fi

	# ncurses: python refers to members of typedef struct _win_st WINDOW
	cfgtest_makevar_append '-DNCURSES_INTERNALS'

	# <panel.h>
	if [ -n "$mb_panel_wrapper" ]; then
		cfgtest_makevar_append '-I$(PROJECT_DIR)/wrappers'
		unset mb_panel_wrapper
	fi

	# ncurses libs (common part)
	mb_ncurses_libs='-lpanelw -lncursesw'
	mb_ncurses_tinfo='-ltinfo'

	if cfgtest_library_presence $mb_ncurses_tinfo; then
		mb_ncurses_libs="$mb_ncurses_libs $mb_ncurses_tinfo"
	fi
}


cfgdefs_perform_target_tests()
{
	# init
	cfgtest_target_section

	# common tests
	cfgdefs_perform_common_tests

	# ncurses libs
	mb_cfgtest_makevar='LDFLAGS_NCURSES_LIBS'
	cfgtest_makevar_append $mb_ncurses_libs

	mb_cfgtest_makevar='LDFLAGS_NCURSES'
	cfgtest_makevar_append \
		'-Wl,--as-needed $(LDFLAGS_NCURSES_LIBS)' \
		'-Wl,--no-as-needed'

	mb_cfgtest_makevar='LDFLAGS_NCURSES_STATIC'
	cfgtest_makevar_append '$(LDFLAGS_NCURSES)'

	# ndbm
	cfgtest_newline
	cfgtest_comment 'ndbm'
	cfgtest_header_presence 'ndbm.h'

	# openssl
	cfgtest_newline
	cfgtest_comment 'openssl/libressl'

	mb_cfgtest_headers='openssl/x509.h'

	if cfgtest_interface_presence 'X509_NAME_ENTRY_set'; then
		cfgtest_cflags_append '-DOPENSSL_VERSION_1_1'
	fi

	# tcl/tk libc
	cfgtest_newline
	cfgtest_comment 'tcl/tk'

	for mb_tcltk_ver in 8.9 8.8 8.7 8.6 8.5; do
		if [ -z "$mb_tcltk_libs" ]; then
			mb_tcltk_libs="-ltk$mb_tcltk_ver -ltcl$mb_tcltk_ver"
			cfgtest_library_presence $mb_tcltk_libs \
				|| mb_tcltk_libs=''
		fi
	done

	mb_cfgtest_makevar='LDFLAGS_TCLTK_LIBS'
	cfgtest_makevar_append "$mb_tcltk_libs"

	# sqlite
	cfgtest_newline
	cfgtest_comment 'sqlite3'

	mb_cfgtest_makevar='CFLAGS_SQLITE'
	cfgtest_makevar_append '-DMODULE_NAME=\"sqlite3\"'
	cfgtest_makevar_append '-DSQLITE_OMIT_LOAD_EXTENSION'

	mb_cfgtest_makevar='LDFLAGS_SQLITE'
	cfgtest_makevar_append '-lsqlite3'

	mb_cfgtest_makevar='LDFLAGS_SQLITE_STATIC'
	cfgtest_makevar_append '$(LDFLAGS_SQLITE)'

	# pretty cfgdefs.mk
	cfgtest_newline
}


cfgdefs_perform_native_tests()
{
	# init
	cfgtest_native_section

	# common tests
	cfgdefs_perform_common_tests

	# ncurses libs
	cfgtest_ldflags_append $mb_ncurses_libs

	# pretty cfgdefs.mk
	cfgtest_newline
}


# cfghost
cfgdefs_set_cfghost_flavors

# python version info
cfgdefs_detect_python_version

# cfgdefs.in --> cfgdefs.mk
cfgdefs_output_custom_defs

# target-specific tests
cfgdefs_perform_target_tests

# native system tests
cfgdefs_perform_native_tests

# all done
return 0