aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/tests
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2015-11-21 13:16:08 +0100
committerHarald Welte <laforge@gnumonks.org>2015-11-21 13:16:08 +0100
commit97b6bfa996ed1745d27c5598186c4583f7e90861 (patch)
tree45fd3cacb16a1ac0e4744d8f3dda3118f43f22db /openbsc/tests
parent1b9c815024a1f863d83b70d0bb48c513f8e4cbeb (diff)
Fix compilation with no libc-ares present on the system
This build failure was introduced with the OAP and gtphub changes.
Diffstat (limited to 'openbsc/tests')
-rw-r--r--openbsc/tests/Makefile.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/openbsc/tests/Makefile.am b/openbsc/tests/Makefile.am
index 995660a6f..04b8e345f 100644
--- a/openbsc/tests/Makefile.am
+++ b/openbsc/tests/Makefile.am
@@ -13,7 +13,10 @@ SUBDIRS += smpp
endif
if HAVE_LIBGTP
-SUBDIRS += sgsn oap gtphub
+SUBDIRS += gtphub
+if HAVE_LIBCARES
+SUBDIRS += sgsn oap
+endif
endif