remove libasn1c dependency and use asn1c without libasn1c

TODO: re-introduce talloc integration for asn1 runtime

Change-Id: I2140509c5359727f304470249be2a726b9a8deb1
diff --git a/src/remsim_client.c b/src/remsim_client.c
index 850ded6..90e8de2 100644
--- a/src/remsim_client.c
+++ b/src/remsim_client.c
@@ -97,7 +97,7 @@
 static struct bankd_client *g_client;
 static void *g_tall_ctx;
 void __thread *talloc_asn1_ctx;
-extern int asn_debug;
+int asn_debug;
 
 int main(int argc, char **argv)
 {
@@ -114,7 +114,7 @@
 	OSMO_STRLCPY_ARRAY(g_client->own_comp_id.software, "remsim-client");
 	OSMO_STRLCPY_ARRAY(g_client->own_comp_id.sw_version, PACKAGE_VERSION);
 
-	//asn_debug = 1;
+	asn_debug = 0;
 	osmo_init_logging2(g_tall_ctx, &log_info);
 
 	if (bankd_conn_fsm_alloc(g_client) < 0) {