1
0
Fork 0

cleanup directory structure and init file handling

moved common functions to ArangoClient
This commit is contained in:
Frank Celler 2012-08-29 17:40:16 +02:00
parent 4cf0323e6e
commit 39f4a8f833
423 changed files with 5490 additions and 4823 deletions

27
.gitignore vendored
View File

@ -3,7 +3,7 @@
3rdParty/czmq-1.1.0/src/czmq_selftest
3rdParty/czmq-1.1.0/src/libczmq.pc
3rdParty/czmq-1.1.0/src/platform.h
3rdParty/libev/ARCH.x64
3rdParty/libev/BUILD
3rdParty/libev/libtool
3rdParty/mruby/bin/mrbc
3rdParty/mruby/bin/mruby
@ -88,18 +88,19 @@ config.status
configure
config/version.sh
COVERAGE
.czmq-build-64
.czmq-build-*
.deps
.dirstamp
Doxygen/arango.doxy
Doxygen/html/
Doxygen/js
Doxygen/latex/
Doxygen/manuals
Doxygen/.setup-directories
Doxygen/web/*.html
Doxygen/wiki/
Doxygen/xml/
Documentation/arango.template
Documentation/arango.doxy
Documentation/html/
Documentation/js
Documentation/latex/
Documentation/manuals
Documentation/.setup-directories
Documentation/web/*.html
Documentation/wiki/
Documentation/xml/
.DS_Store
*.gcda
*.gcno
@ -140,7 +141,7 @@ Makefile.local
*.old
out
*.Po
.protobuf-build-64
.protobuf-build-*
*.pyc
.setup-js-directories
.setup-mr-directories
@ -162,4 +163,4 @@ UnitTests/Philadelphia/Makefile.py
UnitTests/Philadelphia/Runner.cpp
.v8-build-*
VC++
.zeromq-build-64
.zeromq-build-*

View File

@ -1,29 +1,13 @@
# -*- mode: Makefile; -*-
################################################################################
## -----------------------------------------------------------------------------
## --SECTION-- LIBRARY
################################################################################
## -----------------------------------------------------------------------------
################################################################################
### @brief libev
################################################################################
if ENABLE_64BIT
LIBEV_BUILD_VERSION=ARCH.x64
endif
if ENABLE_32BIT
LIBEV_BUILD_VERSION=ARCH.ia32
endif
if ENABLE_FORCE_32BIT
LIBEV_BUILD_CFLAGS_X=-m32 -O2 -g
LIBEV_BUILD_LDFLAGS_X=-m32
else
LIBEV_BUILD_CFLAGS_X=-O2 -g
LIBEV_BUILD_LDFLAGS_X=
endif
BUILT_SOURCES += @LIBEV_LIBS@
@LIBEV_LIBS@: .libev-build-@TRI_BITS@
@ -35,9 +19,9 @@ BUILT_SOURCES += @LIBEV_LIBS@
@echo "--------------------------------------------------------------------------------"
@echo
mkdir @top_srcdir@/3rdParty/libev/$(LIBEV_BUILD_VERSION) || true
cd @top_srcdir@/3rdParty/libev/$(LIBEV_BUILD_VERSION) && CFLAGS="$(LIBEV_BUILD_CFLAGS_X)" orig_CFLAGS="$(LIBEV_BUILD_CFLAGS_X)" LDFLAGS="$(LIBEV_BUILD_LDFLAGS_X)" ../configure --disable-shared
cd @top_srcdir@/3rdParty/libev/$(LIBEV_BUILD_VERSION) && $(MAKE)
mkdir @top_srcdir@/3rdParty/libev/BUILD || true
cd @top_srcdir@/3rdParty/libev/BUILD && ../configure --disable-shared
cd @top_srcdir@/3rdParty/libev/BUILD && $(MAKE)
touch .libev-build-@TRI_BITS@
@ -47,9 +31,9 @@ BUILT_SOURCES += @LIBEV_LIBS@
@echo "--------------------------------------------------------------------------------"
@echo
################################################################################
## -----------------------------------------------------------------------------
## --SECTION-- END-OF-FILE
################################################################################
## -----------------------------------------------------------------------------
## Local Variables:
## mode: outline-minor

View File

@ -1,8 +1,8 @@
# -*- mode: Makefile; -*-
################################################################################
## -----------------------------------------------------------------------------
## --SECTION-- LIBRARY
################################################################################
## -----------------------------------------------------------------------------
################################################################################
### @brief mruby
@ -29,9 +29,9 @@ BUILT_SOURCES += @MRUBY_LIBS@
@echo "--------------------------------------------------------------------------------"
@echo
################################################################################
## -----------------------------------------------------------------------------
## --SECTION-- END-OF-FILE
################################################################################
## -----------------------------------------------------------------------------
## Local Variables:
## mode: outline-minor

View File

@ -1,8 +1,8 @@
# -*- mode: Makefile; -*-
################################################################################
## -----------------------------------------------------------------------------
## --SECTION-- LIBRARY
################################################################################
## -----------------------------------------------------------------------------
################################################################################
### @brief Protobuf
@ -36,9 +36,9 @@ PROTOBUFDIR = @abs_top_srcdir@/3rdParty/protobuf-2.4.1/BUILD
@echo "--------------------------------------------------------------------------------"
@echo
################################################################################
## -----------------------------------------------------------------------------
## --SECTION-- END-OF-FILE
################################################################################
## -----------------------------------------------------------------------------
## Local Variables:
## mode: outline-minor

View File

@ -1,8 +1,8 @@
# -*- mode: Makefile; -*-
################################################################################
## -----------------------------------------------------------------------------
## --SECTION-- LIBRARY
################################################################################
## -----------------------------------------------------------------------------
################################################################################
### @brief V8
@ -29,9 +29,9 @@ BUILT_SOURCES += @V8_LIBS@
@echo "--------------------------------------------------------------------------------"
@echo
################################################################################
## -----------------------------------------------------------------------------
## --SECTION-- END-OF-FILE
################################################################################
## -----------------------------------------------------------------------------
## Local Variables:
## mode: outline-minor

View File

@ -1,8 +1,8 @@
# -*- mode: Makefile; -*-
################################################################################
## -----------------------------------------------------------------------------
## --SECTION-- LIBRARY
################################################################################
## -----------------------------------------------------------------------------
################################################################################
### @brief ZeroMQ
@ -62,9 +62,9 @@ ZMQDIR = @abs_top_srcdir@/3rdParty/zeromq-2.2.0/BUILD
@echo "--------------------------------------------------------------------------------"
@echo
################################################################################
## -----------------------------------------------------------------------------
## --SECTION-- END-OF-FILE
################################################################################
## -----------------------------------------------------------------------------
## Local Variables:
## mode: outline-minor

Some files were not shown because too many files have changed in this diff Show More