소스 검색

Use the more compatible -R flag instead of -rpath when linking.

master
Richard Nyberg 15 년 전
부모
커밋
b47b55b3bc
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. +4
    -2
      configure.ac

+ 4
- 2
configure.ac 파일 보기

@@ -10,8 +10,10 @@ AC_PROG_RANLIB

AC_ARG_WITH(openssl,
[ --with-openssl=dir use openssl installed in dir],
AC_SUBST(openssl_LDFLAGS,["-L${withval}/lib -Wl,-rpath=${withval}/lib"])
AC_SUBST(openssl_CPPFLAGS,"-I${withval}/include"))
[
AC_SUBST(openssl_LDFLAGS,["-L${withval}/lib -Wl,-R,${withval}/lib"])
AC_SUBST(openssl_CPPFLAGS,"-I${withval}/include")
])

AC_ARG_WITH(evloop-method,
[ --with-evloop-method select evloop method (epoll,poll,kqueue)],


불러오는 중...
취소
저장