summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-12-05 12:55:37 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-12-05 12:55:37 +0000
commitc4cdfd526f8f8987d038706e6a854ff21c8f0e72 (patch)
tree8e09196831be31b0fed307376309956faf76e640 /configure.ac
parent0991cf95d9114f8d5e18e3d005f997055d1a6387 (diff)
downloadrsyslog-c4cdfd526f8f8987d038706e6a854ff21c8f0e72.tar.gz
rsyslog-c4cdfd526f8f8987d038706e6a854ff21c8f0e72.tar.xz
rsyslog-c4cdfd526f8f8987d038706e6a854ff21c8f0e72.zip
corrected typo: -lrt -ldl were exchanged ;)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index bafa07aa..4212512a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -31,8 +31,8 @@ esac
# Checks for libraries.
save_LIBS=$LIBS
-AC_SEARCH_LIBS(clock_gettime, rt, [dl_libs="-ldl" AC_SUBST(dl_libs)])
-AC_SEARCH_LIBS(dlopen, dl, [rt_libs="-lrt" AC_SUBST(rt_libs)])
+AC_SEARCH_LIBS(clock_gettime, rt, [rt_libs="-lrt" AC_SUBST(rt_libs)])
+AC_SEARCH_LIBS(dlopen, dl, [dl_libs="-ldl" AC_SUBST(dl_libs)])
LIBS=$save_LIBS
# Checks for header files.