Skip to content

Commit

Permalink
Merge pull request ceph#3844 from ceph/wip-10965
Browse files Browse the repository at this point in the history
Wip 10965

Reviewed-by: Josh Durgin <[email protected]>
  • Loading branch information
jdurgin committed Mar 2, 2015
2 parents 594737e + caa9022 commit 6864dc9
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/Makefile-env.am
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ LIBCLIENT_FUSE = libclient_fuse.la
LIBRADOS = librados.la
LIBRADOSSTRIPER = libradosstriper.la
LIBRGW = librgw.la
LIBCIVETWEB = libcivetweb.la
LIBRBD = librbd.la
LIBRBD_TYPES = librbd_types.la
LIBKRBD = libkrbd.la
Expand Down
2 changes: 1 addition & 1 deletion src/civetweb
18 changes: 14 additions & 4 deletions src/rgw/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,18 @@ LIBRGW_DEPS += \
-lfcgi \
-ldl

CIVETWEB_INCLUDE = --include civetweb/include/civetweb_conf.h

libcivetweb_la_SOURCES = \
rgw/rgw_civetweb.cc \
rgw/rgw_civetweb_log.cc \
civetweb/src/civetweb.c

libcivetweb_la_CXXFLAGS = ${CIVETWEB_INCLUDE} -Woverloaded-virtual ${AM_CXXFLAGS}
libcivetweb_la_CFLAGS = -Icivetweb/include ${CIVETWEB_INCLUDE}

noinst_LTLIBRARIES += libcivetweb.la

radosgw_SOURCES = \
rgw/rgw_resolve.cc \
rgw/rgw_rest.cc \
Expand All @@ -71,12 +83,9 @@ radosgw_SOURCES = \
rgw/rgw_swift.cc \
rgw/rgw_swift_auth.cc \
rgw/rgw_loadgen.cc \
rgw/rgw_civetweb.cc \
rgw/rgw_civetweb_log.cc \
civetweb/src/civetweb.c \
rgw/rgw_main.cc
radosgw_CFLAGS = -I$(srcdir)/civetweb/include
radosgw_LDADD = $(LIBRGW) $(LIBRGW_DEPS) $(RESOLV_LIBS) $(CEPH_GLOBAL)
radosgw_LDADD = $(LIBRGW) $(LIBCIVETWEB) $(LIBRGW_DEPS) $(RESOLV_LIBS) $(CEPH_GLOBAL)
bin_PROGRAMS += radosgw

radosgw_admin_SOURCES = rgw/rgw_admin.cc
Expand Down Expand Up @@ -162,4 +171,5 @@ noinst_HEADERS += \
rgw/rgw_civetweb_log.h \
civetweb/civetweb.h \
civetweb/include/civetweb.h \
civetweb/include/civetweb_conf.h \
civetweb/src/md5.h

0 comments on commit 6864dc9

Please sign in to comment.