Commit c1419124 authored by Ryan Bloom's avatar Ryan Bloom
Browse files

Get the support programs building properly. Httpd itself is next.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87191 13f79535-47bb-0310-9956-ffa450edef68
parent 8c3d9ea7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -175,7 +175,7 @@ apache_need_expat=yes

dnl AP_LIB_DIRS specifies the additional libs from srclib/ that we need
dnl AP_LIBS specifies the actual libraries. note we have some required libs.
AP_LIBS="srclib/pcre/libpcre.la"
AP_LIBS="srclib/pcre/libpcre.la srclib/apr-util/.libs/libaprutil.la"

if test "$apache_need_sdbm" = "yes"; then
  AP_LIB_DIRS="$AP_LIB_DIRS sdbm"
+2 −1
Original line number Diff line number Diff line
@@ -3,7 +3,8 @@ PROGRAMS = htpasswd htdigest rotatelogs logresolve ab
targets  = $(PROGRAMS)

PROGRAM_LDADD        = $(EXTRA_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS)
PROGRAM_DEPENDENCIES = ../srclib/apr/$(LIBPRE)apr.a
PROGRAM_DEPENDENCIES = ../srclib/apr/$(LIBPRE)apr.a \
	../srclib/apr-util/.libs/libaprutil.a

include $(top_srcdir)/build/rules.mk