forked from HWCloudEngine/storage-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigure.ac
More file actions
31 lines (30 loc) · 834 Bytes
/
Copy pathconfigure.ac
File metadata and controls
31 lines (30 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT(rpc_server, 1.0, huawei@huawei.com)
# Checks for header files.
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE
AC_CONFIG_MACRO_DIR([m4])
# Checks for programs.
#AC_PROG_CC
AC_LANG([C++])
AC_PROG_CXX
# Checks for libraries.
# FIXME: Replace `main' with a function in `-lpthread':
AC_CHECK_LIB([pthread],[pthread_rwlock_init])
# Checks for library functions.
#AC_CHECK_LIB([protobuf],[])
#AC_CHECK_LIB([dl],[])
#AC_CHECK_LIB([grpc],[])
#AC_CHECK_LIB([grpc++],[])
LT_INIT
AC_OUTPUT([Makefile
src/log/Makefile
src/rpc/Makefile
src/snapshot/Makefile
src/dr_server/Makefile
src/journal/cache/Makefile
src/journal/Makefile
src/test/Makefile
])