summaryrefslogtreecommitdiffstatsabout
path: root/configure.ac
diff options
context:
space:
mode:
authorEdward Rudd <urkle@outoforder.cc>2004-04-02 06:08:59 (GMT)
committer Edward Rudd <urkle@outoforder.cc>2004-04-02 06:08:59 (GMT)
commitd14dcc25d77a556940bcbb6feb71f0b6e67c2674 (patch)
tree4f0f35c8dc2ac544ae8299247fc0cccd3a621f29 /configure.ac
parent0c653076dbc735757b84b2bc2ff9ee173c246b46 (diff)
Added alternat loginInfo form.. driver://user;passwd@host:port/databasename
fixed RT_LIBS parameter in makefile.in, and configure.ac
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index bf8ba6e..c93d224 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,15 +33,15 @@ AC_SUBST(WANT_SSL_MOD)
33case "$target" in 33case "$target" in
34 *-*-solaris* | *-*-osf* ) 34 *-*-solaris* | *-*-osf* )
35 if test $APACHE_VERSION -eq 1.3; then 35 if test $APACHE_VERSION -eq 1.3; then
36 RTLIBS=-lrt 36 RT_LIBS=-lrt
37 fi 37 fi
38 ;; 38 ;;
39 *) 39 *)
40 RTLIBS="" 40 RT_LIBS=""
41 ;; 41 ;;
42esac 42esac
43 43
44AC_SUBST(RTLIBS) 44AC_SUBST(RT_LIBS)
45 45
46AC_CHECK_HEADERS(limits.h) 46AC_CHECK_HEADERS(limits.h)
47 47