You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.6 KiB
36 lines
1.6 KiB
Index: Makefile.am |
|
--- Makefile.am.orig 2016-07-18 08:23:17.932126000 +0200 |
|
+++ Makefile.am 2016-07-18 08:23:58.872173110 +0200 |
|
@@ -4,13 +4,13 @@ |
|
|
|
liblocalmd5_a_SOURCES = dependencies/md5/md5.c |
|
|
|
-AM_CXXFLAGS = $(CXX11_FLAGS) $(CODEC_FLAGS) $(SYSTEM_DEPENDENCIES_CFLAGS) $(THREAD_FLAGS) $(PICKY_CXXFLAGS) $(ARCH_FLAGS) $(SANITIZE_FLAGS) $(NODEBUG_CXXFLAGS) -DGIT_REVISION=\"$(shell git describe --dirty --always 2> /dev/null || basename `pwd`)\" $(includes) |
|
+AM_CXXFLAGS = $(CXX11_FLAGS) $(CODEC_FLAGS) $(SYSTEM_DEPENDENCIES_CFLAGS) $(THREAD_FLAGS) $(PICKY_CXXFLAGS) $(ARCH_FLAGS) $(SANITIZE_FLAGS) $(NODEBUG_CXXFLAGS) -DGIT_REVISION=\"0000\" $(includes) |
|
|
|
AM_CFLAGS = $(C99_FLAGS) $(CODEC_FLAGS) $(THREAD_FLAGS) $(PICKY_CFLAGS) $(ARCH_FLAGS) $(SANITIZE_FLAGS) $(NODEBUG_CXXFLAGS) |
|
|
|
-noinst_LIBRARIES = liblocalzlib.a liblocalmd5.a libtestdriver.a |
|
+noinst_LIBRARIES = liblocalzlib.a liblocalmd5.a |
|
|
|
-bin_PROGRAMS = lepton test_suite/test_invariants |
|
+bin_PROGRAMS = lepton |
|
|
|
lepton_LDADD = liblocalmd5.a $(SYSTEM_DEPENDENCIES_LDFLAGS) -lpthread |
|
|
|
Index: configure.ac |
|
--- configure.ac.orig 2016-07-17 22:41:30.000000000 +0200 |
|
+++ configure.ac 2016-07-18 08:23:17.932126120 +0200 |
|
@@ -14,10 +14,10 @@ |
|
AC_SUBST([C99_FLAGS]) |
|
|
|
# Add picky flags |
|
-PICKY_CFLAGS="-pedantic -Wall -Wextra -Wno-write-strings -Wno-unused-parameter" |
|
+PICKY_CFLAGS="-Wno-write-strings -Wno-unused-parameter" |
|
AC_SUBST([PICKY_CFLAGS]) |
|
|
|
-PICKY_CXXFLAGS="-pedantic -Wall -Wextra -Wno-write-strings -Wno-unused-parameter -fno-exceptions -fno-rtti" |
|
+PICKY_CXXFLAGS="-Wno-write-strings -Wno-unused-parameter -fno-exceptions -fno-rtti" |
|
AC_SUBST([PICKY_CXXFLAGS]) |
|
|
|
# Add -DNDEBUG by default
|
|
|