summaryrefslogtreecommitdiffstats
path: root/src/modules/rlm_python3/configure.ac
blob: 208580d55e8a671d402ff4e426eafa88b5356746 (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
AC_PREREQ([2.68])
AC_INIT([rlm_python3.c])
AC_REVISION($Revision$)
FR_INIT_MODULE([rlm_python3], [support for embedded Python3])

if test x$with_[]modname != xno; then

	AC_PROG_CC
	AC_PROG_CPP
	AM_PATH_PYTHON([3.0],, [:])

	dnl extra argument: --with-rlm-python3-config-bin
	PYTHON3_CONFIG_BIN=
	AC_ARG_WITH(rlm-python3-config-bin,
	[  --with-rlm-python3-config-bin=PATH   Path to python-config3 binary []],
	[ case "$withval" in
	    no)
		AC_MSG_ERROR(Need rlm-python3-config-bin)
		;;
	    yes)
		;;
	    *)
		PYTHON3_CONFIG_BIN="$withval"
		;;
	  esac ]
	)

	if test "x$PYTHON3_CONFIG_BIN" = x; then
		AC_CHECK_PROGS(PYTHON3_CONFIG_BIN, [ python3-config ], not-found, [${PATH}:/usr/bin:/usr/local/bin])
	fi

	if test "x$PYTHON3_CONFIG_BIN" = xnot-found; then
		fail="$fail python3-config"
	else
		dnl #
		dnl # It is necessary due to a weird behavior with 'python3-config'
		dnl #
		old_CFLAGS="$CFLAGS"
		unset CFLAGS

		python3_cflags=`${PYTHON3_CONFIG_BIN} --cflags`
		AC_MSG_NOTICE([${PYTHON3_CONFIG_BIN}'s cflags were \"${python3_cflags}\"])

		dnl # Convert -I to -isystem to get rid of warnings about issues in Python headers
		dnl # Strip -systemroot
		dnl # Strip optimisation flags (-O[0-9]?). We decide our optimisation level, not python.
		dnl # -D_FORTIFY_SOURCE needs -O.
		dnl # Strip debug symbol flags (-g[0-9]?). We decide on debugging symbols, not python
		dnl # Strip -W*, we decide what warnings are important
		dnl # Strip -DNDEBUG
		dnl # Strip -frecord-gcc-switches, We decide if we need that, not python.
		dnl # Strip -specs=/path/whatever.specs, We don't need the compiler .specs that comes from Python
		dnl # Strip -ffat-lto-objects, We decide if we need that, not python.
		dnl # Strip -flto=auto, We decide if we need that, not python.
		mod_cflags=`echo " $python3_cflags" | sed -e '\
			s/ -I/ -isystem/g;\
			s/ -isysroot[[ =]]\{0,1\}[[^-]]*/ /g;\
			s/ -O[[^[[:blank:]]]]*/ /g;\
			s/ -Wp,-D_FORTIFY_SOURCE=[[[:digit:]]]/ /g;\
			s/ -g[[^ ]]*/ /g;\
			s/ -W[[^ ]]*/ /g;\
			s/ -DNDEBUG[[[:blank:]]]*/ /g;\
			s/ -frecord-gcc-switches/ /g;\
			s/ -specs=[[^ ]]*/ /g; \
			s/ -ffat-lto-objects/ /g; \
			s/ -flto=[[^ ]]*/ /g;
			'`
		AC_MSG_NOTICE([Sanitized cflags were \"${mod_cflags}\"])

		dnl # From python 3.8, --embed is required
		dnl # https://bugs.python.org/issue36721
		AX_COMPARE_VERSION(${PYTHON_VERSION}, [ge], [3.8], [EMBED="--embed"], [])

		python3_ldflags=`${PYTHON3_CONFIG_BIN} --ldflags $EMBED`
		AC_MSG_NOTICE([${PYTHON3_CONFIG_BIN}'s ldflags were \"$python3_ldflags}\"])

		dnl # Strip -Wl,-O1... Is -O even a valid linker flag??
		dnl # Strip -Wl,-Bsymbolic-functions as thats not always supported or required
		dnl # Strip -Xlinker -export-dynamic as it causes weird linking issues on Linux
		dnl #   See: https://bugs.python.org/issue36508
		mod_ldflags=`echo $python3_ldflags | sed -e '\
			s/-Wl,-O[[[:digit:]]][[[:blank:]]]*//g;\
			s/-Wl,-Bsymbolic-functions[[[:blank:]]]*//g;\
			s/-Xlinker -export-dynamic//g;\
			s/-Wl,-stack_size,[[[:digit:]]]*[[[:blank:]]]//g;
			'`
		AC_MSG_NOTICE([Sanitized ldflags were \"${mod_ldflags}\"])

		CFLAGS=$old_CFLAGS

		targetname="rlm_python3"
	fi
	AC_CHECK_FUNCS([dl_iterate_phdr])
else
	targetname=
	echo \*\*\* module modname is disabled.
fi

if test x"$fail" != x""; then
	if test x"${enable_strict_dependencies}" = x"yes"; then
		AC_MSG_ERROR([set --without-]modname[ to disable it explicitly.])
	else
		AC_MSG_WARN([silently not building ]modname[.])
		AC_MSG_WARN([FAILURE: ]modname[ requires: $fail.]);
		targetname=""
	fi
fi

AC_CONFIG_HEADER(config.h)
AC_SUBST(mod_ldflags)
AC_SUBST(mod_cflags)
AC_SUBST(targetname)
AC_OUTPUT(all.mk)