diff options
author | Dylan Baker <[email protected]> | 2017-09-30 12:14:02 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-10-16 16:32:43 -0700 |
commit | e4796ab7c8a5f00c9f35124384c4d0d5fc155541 (patch) | |
tree | e1d7958c421a9cd87077edf4db572ad1f1fcde86 /configure.ac | |
parent | 3b209e9304b88ecad5c49694a98deb8f28f4c5f7 (diff) |
configure: commit test files
These are currently auto-generated, but meson needs the same files, so
lets commit them to reduce duplication.
v3: - Rename .build to build-support
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Signed-off-by: Dylan Baker <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/configure.ac b/configure.ac index 62d33a1941c..bbabf3bed7c 100644 --- a/configure.ac +++ b/configure.ac @@ -606,16 +606,7 @@ dnl Check if linker supports version scripts dnl AC_MSG_CHECKING([if the linker supports version-scripts]) save_LDFLAGS=$LDFLAGS -LDFLAGS="$LDFLAGS -Wl,--version-script=conftest.map" -cat > conftest.map <<EOF -VERSION_1 { - global: - main; - - local: - *; -}; -EOF +LDFLAGS="$LDFLAGS -Wl,--version-script=$srcdir/build-support/conftest.map" AC_LINK_IFELSE( [AC_LANG_SOURCE([int main() { return 0;}])], [have_ld_version_script=yes;AC_MSG_RESULT(yes)], @@ -628,12 +619,7 @@ dnl Check if linker supports dynamic list files dnl AC_MSG_CHECKING([if the linker supports --dynamic-list]) save_LDFLAGS=$LDFLAGS -LDFLAGS="$LDFLAGS -Wl,--dynamic-list=conftest.dyn" -cat > conftest.dyn <<EOF -{ - radeon_drm_winsys_create; -}; -EOF +LDFLAGS="$LDFLAGS -Wl,--dynamic-list=$srcdir/build-support/conftest.dyn" AC_LINK_IFELSE( [AC_LANG_SOURCE([int main() { return 0;}])], [have_ld_dynamic_list=yes;AC_MSG_RESULT(yes)], |