mirror of
https://git.freebsd.org/ports.git
synced 2025-06-10 15:20:32 -04:00
Fix packaging with pyton support. While here, remove the annoying sleeps at the end of the configure script. PR: 221768 Submitted by: Daniel Ylitalo <daniel AT blodan DOT se> Committed at: FreeBSD 201709 DevSummit
42 lines
2 KiB
Text
42 lines
2 KiB
Text
--- configure.orig 2017-05-16 11:55:23 UTC
|
|
+++ configure
|
|
@@ -13698,7 +13698,7 @@ fi
|
|
|
|
|
|
if test "x$GCC" = "xyes"; then
|
|
- for flag in -fno-strict-aliasing -Wall -std=gnu99 -pedantic -Wundef -Wshadow -Wpointer-arith -Wcast-align -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline -Wold-style-definition -W; do
|
|
+ for flag in -fno-strict-aliasing -Wall -std=gnu99 -pedantic -Wundef -Wshadow -Wpointer-arith -Wcast-align -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline -Wold-style-definition; do
|
|
oCFLAGS="$CFLAGS"
|
|
CFLAGS="$CFLAGS $flag"
|
|
cachename=rd_cv_gcc_flag_`echo $flag|sed 's/[^A-Za-z]/_/g'`
|
|
@@ -22422,9 +22422,9 @@ $as_echo "$am_cv_python_pyexecdir" >&6; }
|
|
$as_echo_n "checking for headers required to compile python extensions... " >&6; }
|
|
py_prefix=`$PYTHON -c "import sys; print(sys.prefix)"`
|
|
py_exec_prefix=`$PYTHON -c "import sys; print(sys.exec_prefix)"`
|
|
-PYTHON_INCLUDES="-I${py_prefix}/include/python${PYTHON_VERSION}"
|
|
+PYTHON_INCLUDES="-I${py_prefix}/include/python${PYTHON_VERSION} -I${py_prefix}/include/python${PYTHON_VERSION}m"
|
|
if test "$py_prefix" != "$py_exec_prefix"; then
|
|
- PYTHON_INCLUDES="$PYTHON_INCLUDES -I${py_exec_prefix}/include/python${PYTHON_VERSION}"
|
|
+ PYTHON_INCLUDES="$PYTHON_INCLUDES -I${py_exec_prefix}/include/python${PYTHON_VERSION} -I${py_exec_prefix}/include/python${PYTHON_VERSION}m"
|
|
fi
|
|
|
|
save_CPPFLAGS="$CPPFLAGS"
|
|
@@ -27780,18 +27780,6 @@ $as_echo_n "checking in... " >&6; }
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: and out again" >&5
|
|
$as_echo "and out again" >&6; }
|
|
|
|
-echo $ECHO_N "ordering CD from http://tobi.oetiker.ch/wish $ECHO_C" 1>&6
|
|
-sleep 1
|
|
-echo $ECHO_N ".$ECHO_C" 1>&6
|
|
-sleep 1
|
|
-echo $ECHO_N ".$ECHO_C" 1>&6
|
|
-sleep 1
|
|
-echo $ECHO_N ".$ECHO_C" 1>&6
|
|
-sleep 1
|
|
-echo $ECHO_N ".$ECHO_C" 1>&6
|
|
-sleep 1
|
|
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: just kidding ;-)" >&5
|
|
-$as_echo " just kidding ;-)" >&6; }
|
|
echo
|
|
echo "----------------------------------------------------------------"
|
|
echo "Config is DONE!"
|