mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 15:36:35 -04:00
48 lines
1.4 KiB
Text
48 lines
1.4 KiB
Text
--- configure.orig 2017-04-13 01:55:54 UTC
|
|
+++ configure
|
|
@@ -3262,12 +3262,7 @@ target_os_default=$(tolower $(uname -s))
|
|
host_os=$target_os_default
|
|
|
|
# machine
|
|
-if test "$target_os_default" = aix; then
|
|
- arch_default=$(uname -p)
|
|
- strip_default="strip -X32_64"
|
|
-else
|
|
- arch_default=$(uname -m)
|
|
-fi
|
|
+arch_default=$(uname -p)
|
|
cpu="generic"
|
|
intrinsics="none"
|
|
|
|
@@ -6295,6 +6290,9 @@ elif enabled llvm_gcc; then
|
|
elif enabled clang; then
|
|
check_cflags -mllvm -stack-alignment=16
|
|
check_cflags -mstack-alignment=16
|
|
+ if enabled x86_32; then
|
|
+ check_cflags -mstackrealign
|
|
+ fi
|
|
check_cflags -Qunused-arguments
|
|
check_cflags -Werror=implicit-function-declaration
|
|
check_cflags -Werror=missing-prototypes
|
|
@@ -6900,7 +6898,7 @@ exec_prefix=\${prefix}
|
|
libdir=$libdir
|
|
includedir=$incdir
|
|
|
|
-Name: $name
|
|
+Name: ${name}${build_suffix}
|
|
Description: $comment
|
|
Version: $version
|
|
Requires: $(enabled shared || echo $requires)
|
|
@@ -6914,10 +6912,10 @@ EOF
|
|
mkdir -p doc/examples/pc-uninstalled
|
|
includedir=${source_path}
|
|
[ "$includedir" = . ] && includedir="\${pcfiledir}/../../.."
|
|
- cat <<EOF > doc/examples/pc-uninstalled/${name}-uninstalled.pc
|
|
+ cat <<EOF > doc/examples/pc-uninstalled/${name}${build_suffix}-uninstalled.pc
|
|
prefix=
|
|
exec_prefix=
|
|
-libdir=\${pcfiledir}/../../../$name
|
|
+libdir=\${pcfiledir}/../../../${name}${build_suffix}.pc
|
|
includedir=${includedir}
|
|
|
|
Name: $name
|