Skip to content

Commit 97bee37

Browse files
committed
Merge pull request #6788
3b1279f build: match upstream build change (Cory Fields) 313e7f5 Squashed 'src/univalue/' changes from 87d9045..5839ac3 (MarcoFalke)
2 parents cd57f34 + 3b1279f commit 97bee37

File tree

7 files changed

+16
-20
lines changed

7 files changed

+16
-20
lines changed

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ LIBBITCOIN_UTIL=libbitcoin_util.a
3131
LIBBITCOIN_CRYPTO=crypto/libbitcoin_crypto.a
3232
LIBBITCOINQT=qt/libbitcoinqt.a
3333
LIBSECP256K1=secp256k1/libsecp256k1.la
34-
LIBUNIVALUE=univalue/lib/libunivalue.la
34+
LIBUNIVALUE=univalue/libunivalue.la
3535

3636
$(LIBSECP256K1): $(wildcard secp256k1/src/*) $(wildcard secp256k1/include/*)
3737
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F)

src/univalue/.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,13 @@ test-driver
1919
libtool
2020
ltmain.sh
2121

22+
*.a
23+
*.la
24+
*.lo
25+
*.logs
2226
*.o
27+
*.pc
28+
*.trs
29+
30+
.dirstamp
31+
.libs

src/univalue/Makefile.am

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ ACLOCAL_AMFLAGS = -I build-aux/m4
55
include_HEADERS = include/univalue.h
66
noinst_HEADERS = lib/univalue_escapes.h
77

8-
lib_LTLIBRARIES = lib/libunivalue.la
8+
lib_LTLIBRARIES = libunivalue.la
99

1010
pkgconfigdir = $(libdir)/pkgconfig
1111
pkgconfig_DATA = pc/libunivalue.pc
1212

13-
lib_libunivalue_la_SOURCES = \
13+
libunivalue_la_SOURCES = \
1414
lib/univalue.cpp \
1515
lib/univalue_read.cpp \
1616
lib/univalue_write.cpp
1717

18-
lib_libunivalue_la_LDFLAGS = \
18+
libunivalue_la_LDFLAGS = \
1919
-version-info $(LIBUNIVALUE_CURRENT):$(LIBUNIVALUE_REVISION):$(LIBUNIVALUE_AGE) \
2020
-no-undefined
21-
lib_libunivalue_la_CXXFLAGS = -I$(top_srcdir)/include
21+
libunivalue_la_CXXFLAGS = -I$(top_srcdir)/include
2222

2323
TESTS = test/unitester
2424

@@ -38,7 +38,7 @@ noinst_PROGRAMS = $(TESTS)
3838
TEST_DATA_DIR=test
3939

4040
test_unitester_SOURCES = test/unitester.cpp
41-
test_unitester_LDADD = lib/libunivalue.la
41+
test_unitester_LDADD = libunivalue.la
4242
test_unitester_CXXFLAGS = -I$(top_srcdir)/include -DJSON_TEST_SRC=\"$(srcdir)/$(TEST_DATA_DIR)\"
4343
test_unitester_LDFLAGS = -static $(LIBTOOL_APP_LDFLAGS)
4444

src/univalue/build-aux/m4/.empty

Whitespace-only changes.

src/univalue/build-aux/m4/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/*.m4

src/univalue/lib/.gitignore

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,2 @@
1-
2-
libunivalue-uninstalled.pc
3-
libunivalue.pc
4-
libunivalue.a
51
gen
6-
72
.libs
8-
*.lo
9-
*.la
10-

src/univalue/test/.gitignore

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1 @@
1-
21
unitester
3-
4-
*.log
5-
*.trs
6-
7-
.libs

0 commit comments

Comments
 (0)