Skip to content

Commit

Permalink
Merge pull request #10 from ciwise/dlw-dev
Browse files Browse the repository at this point in the history
added languages
  • Loading branch information
David L. Whitehurst authored Jun 15, 2018
2 parents d30fc63 + 14b446b commit 4da8c8b
Show file tree
Hide file tree
Showing 18 changed files with 15,009 additions and 324 deletions.
8 changes: 8 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,12 @@ SUBDIRS=src
install-data-local:
mkdir -p /usr/local/data
cp src/english.txt /usr/local/data/
cp src/spanish.txt /usr/local/data/
cp src/japanese.txt /usr/local/data/
cp src/italian.txt /usr/local/data/
cp src/french.txt /usr/local/data/
cp src/korean.txt /usr/local/data/
cp src/chinese-simplified.txt /usr/local/data/
cp src/chinese-traditional.txt /usr/local/data/


2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ AM_PROG_CC_C_O
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile src/Makefile])
# Custom Define
MY_CFLAGS="-O2 -Iinclude -I/usr/local/opt/openssl/include -std=c99"
MY_CFLAGS="-O2 -Iinclude -I/usr/local/opt/openssl/include -std=gnu99"

AC_CHECK_LIB(pthread, pthread_spin_trylock)
AC_CHECK_LIB(rt,pthread_attr_setdetachstate)
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bin_PROGRAMS=bip39c
bip39c_SOURCES = bip39c.c
bip39c_SOURCES = bip39c.c crypto.c print_util.c conversion.c

bip39c_CFLAGS = -I$(top_srcdir) $(MY_CFLAGS)

Expand Down
Loading

0 comments on commit 4da8c8b

Please sign in to comment.