diff options
author | Bruno Cabral <bcabral@uw.edu> | 2014-02-16 02:10:21 +0000 |
---|---|---|
committer | Bruno Cabral <bcabral@uw.edu> | 2014-02-16 02:10:21 +0000 |
commit | bbadb72e399f1b46c015fa3b4229e4847963b8ee (patch) | |
tree | b6c3252da6963a1ac9b87c075b1124015bb04b45 | |
parent | f83d475a9ac3d18ea71da06d9c47a5abb256efb1 (diff) | |
download | gnunet-gtk-bbadb72e399f1b46c015fa3b4229e4847963b8ee.tar.gz gnunet-gtk-bbadb72e399f1b46c015fa3b4229e4847963b8ee.zip |
Fix peerinfo compilation
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 60867c5a..63f6a017 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -154,13 +154,13 @@ AC_ARG_ENABLE([peerinfo-app], | |||
154 | AS_IF([test "x$enable_peerinfo_app" != "xno"], [ | 154 | AS_IF([test "x$enable_peerinfo_app" != "xno"], [ |
155 | GNUNET_PEERINFO_APP="peerinfo" | 155 | GNUNET_PEERINFO_APP="peerinfo" |
156 | ]) | 156 | ]) |
157 | AC_SUBST(GNUNET_CONVERSATION_APP) | 157 | AC_SUBST(GNUNET_PEERINFO_APP) |
158 | 158 | ||
159 | GNUNET_PEERINFO_APP="" | 159 | GNUNET_CONVERSATION_APP="" |
160 | AC_ARG_ENABLE([conversation-app], | 160 | AC_ARG_ENABLE([conversation-app], |
161 | AS_HELP_STRING([--disable-conversation-app],[Do not build gnunet-conversation-gtk application])) | 161 | AS_HELP_STRING([--disable-conversation-app],[Do not build gnunet-conversation-gtk application])) |
162 | AS_IF([test "x$enable_conversation_app" != "xno"], [ | 162 | AS_IF([test "x$enable_conversation_app" != "xno"], [ |
163 | GNUNET_PEERINFO_APP="conversation" | 163 | GNUNET_CONVERSATION_APP="conversation" |
164 | ]) | 164 | ]) |
165 | AC_SUBST(GNUNET_CONVERSATION_APP) | 165 | AC_SUBST(GNUNET_CONVERSATION_APP) |
166 | 166 | ||
diff --git a/src/Makefile.am b/src/Makefile.am index 3383f518..13ca2f65 100644 --- a/src/Makefile.am +++ b/src/Makefile.am | |||
@@ -1 +1 @@ | |||
SUBDIRS = . include lib $(GNUNET_FS_APP) $(GNUNET_SETUP_APP) $(GNUNET_PEERINFO_APP) statistics identity namestore main conversation | SUBDIRS = . include lib $(GNUNET_FS_APP) $(GNUNET_SETUP_APP) $(GNUNET_PEERINFO_APP) $(GNUNET_CONVERSATION_APP) statistics identity namestore main | ||