Add workers.c to Makefile.am

This commit is contained in:
c9s 2014-05-24 00:00:49 +08:00
parent 0f5ebed73c
commit e877dc7f0d
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ LT_INIT
AC_PROG_CC AC_PROG_CC
AC_PROG_CC_STDC AC_PROG_CC_STDC
AC_CHECK_HEADERS([stdlib.h string.h sys/time.h stdint.h]) AC_CHECK_HEADERS([stdlib.h string.h sys/time.h stdint.h pthread.h])
PKG_CHECK_MODULES(CHECK,[check >= 0.9.4],:,[ PKG_CHECK_MODULES(CHECK,[check >= 0.9.4],:,[
ifdef([AM_PATH_CHECK], ifdef([AM_PATH_CHECK],

View file

@ -1,6 +1,6 @@
lib_LTLIBRARIES = libr3.la lib_LTLIBRARIES = libr3.la
# lib_LIBRARIES = libr3.a # lib_LIBRARIES = libr3.a
libr3_la_SOURCES = node.c edge.c str.c token.c zmalloc.c libr3_la_SOURCES = node.c edge.c str.c token.c zmalloc.c workers.c
# libr3_la_LDFLAGS = -export-symbols-regex '^r3_|^match_' # libr3_la_LDFLAGS = -export-symbols-regex '^r3_|^match_'
libr3_la_LIBADD=$(DEPS_LIBS) libr3_la_LIBADD=$(DEPS_LIBS)