diff options
author | Trond Norbye <[email protected]> | 2011-04-08 16:31:57 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2011-11-24 11:37:37 +0100 |
commit | 06554482af2de923e8b5c2849f315138cada24e3 (patch) | |
tree | 51dc5f5ed08f132e57004c5bae5b7331afec4677 /erts/configure.in | |
parent | f545894e96d5898285eee8dce812c885cf208fb7 (diff) | |
download | otp-06554482af2de923e8b5c2849f315138cada24e3.tar.gz otp-06554482af2de923e8b5c2849f315138cada24e3.tar.bz2 otp-06554482af2de923e8b5c2849f315138cada24e3.zip |
Use libdlpi to get physical address
Diffstat (limited to 'erts/configure.in')
-rw-r--r-- | erts/configure.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/erts/configure.in b/erts/configure.in index e3eb6034e6..992df948cf 100644 --- a/erts/configure.in +++ b/erts/configure.in @@ -1479,7 +1479,7 @@ AC_CHECK_HEADERS(fcntl.h limits.h unistd.h syslog.h dlfcn.h ieeefp.h \ sys/types.h sys/stropts.h sys/sysctl.h \ sys/ioctl.h sys/time.h sys/uio.h \ sys/socket.h sys/sockio.h sys/socketio.h \ - net/errno.h malloc.h arpa/nameser.h \ + net/errno.h malloc.h arpa/nameser.h libdlpi.h \ pty.h util.h utmp.h langinfo.h poll.h sdkddkver.h) AC_CHECK_HEADER(sys/resource.h, @@ -4303,6 +4303,10 @@ AH_BOTTOM([ #endif ]) +dnl ---------------------------------------------------------------------- +dnl Check the availability for libdlpi +dnl ---------------------------------------------------------------------- +AC_CHECK_LIB(dlpi, dlpi_open) dnl ---------------------------------------------------------------------- dnl Output the result. |