]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Small change to compile client on FreeBSD.
authorOndrej Filip <feela@network.cz>
Mon, 31 May 2004 13:32:58 +0000 (13:32 +0000)
committerOndrej Filip <feela@network.cz>
Mon, 31 May 2004 13:32:58 +0000 (13:32 +0000)
client/client.c

index 424e119dea834a0c39d39a860ae59c2208deeaa1..f1c73c4307a2f134291b60874bc9631624b009b7 100644 (file)
@@ -127,7 +127,9 @@ void
 input_start_list(void)                 /* Leave the currently edited line and make space for listing */
 {
   _rl_move_vert(_rl_vis_botlin);
+#ifdef HAVE_RL_CRLF
   rl_crlf();
+#endif
 }
 
 void
@@ -155,7 +157,9 @@ input_complete(int arg, int key)
       break;
     default:
       complete_flag = 1;
+#ifdef HAVE_RL_DING
       rl_ding();
+#endif
     }
   return 0;
 }