Skip to content
Snippets Groups Projects
Commit 9d217344 authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

Force linkage when existing

parent 3f28a0a6
No related branches found
No related tags found
No related merge requests found
......@@ -35,8 +35,8 @@ AM_CPPFLAGS = $(DEPS_CFLAGS) \
-DCODECS_DIR=\""$(libdir)/sflphone/codecs"
# add symbolic link
install-exec-hook:
ln -s $(bindir)/sflphone-gtk $(bindir)/sflphone
install-exec-local:
ln -sf $(bindir)/sflphone-gtk $(bindir)/sflphone
uninstall-local:
-test -h $(bindir)/sflphone && rm $(bindir)/sflphone
......@@ -40,13 +40,11 @@ GtkWidget * mic_control = NULL;
GtkWidget * statusBar = NULL;
/**
* Terminate the main loop.
* Minimize the main window.
*/
static gboolean
on_delete (GtkWidget * widget, gpointer data)
{
/* Must return FALSE to have the window destroyed */
//return !sflphone_quit();
gtk_widget_hide(GTK_WIDGET( get_main_window() ));
set_minimized( TRUE );
return TRUE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment