Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
simsong committed Dec 11, 2013
1 parent bb0f361 commit fdfe8cd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@ src/config.h.in
src/iblkfind.cpp
stamp-h
stamp-h1
src/compile
src/iblkfind
4 changes: 2 additions & 2 deletions src/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
bin_PROGRAMS = dfxml_demo iblkfind
dfxml_demo_SOURCES = dfxml_demo.cpp dfxml_reader.cpp dfxml.h
iblkfind_SOURCES = iblkfind.cpp
dfxml_demo_SOURCES = dfxml_demo.cpp dfxml_reader.cpp dfxml_reader.h
iblkfind_SOURCES = iblkfind.cpp dfxml_reader.cpp dfxml_reader.h
EXTRA_DIST = \
beregex.cpp \
beregex.h \
Expand Down
11 changes: 5 additions & 6 deletions src/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

AC_PREREQ(2.57)
AC_INIT(DFXML, 0.0.1, bugs@afflib.org)
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_MACRO_DIR(m4)
AC_CONFIG_FILES([Makefile])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE
Expand All @@ -16,15 +16,14 @@ AM_MAINTAINER_MODE
# Programs we will be using
AC_PROG_CC
AC_PROG_CXX
AM_PROG_CC_C_O dnl allow per-produce flags
AC_PROG_INSTALL

# use C++11 mode if available; HAVE_CXX11 is defined in config.h if so. Don't
# use the GNU C++11 extensions for portability's sake (noext).
# AC_LANG_PUSH(C++)
#AX_CXX_COMPILE_STDCXX_11(noext, optional)
AX_CXX_COMPILE_STDCXX_11()
# AC_LANG_POP()

AC_LANG_PUSH(C++)
AX_CXX_COMPILE_STDCXX_11(noext, optional)
AC_LANG_POP()

m4_include([dfxml_configure.m4])

Expand Down

0 comments on commit fdfe8cd

Please sign in to comment.