Commit ea700f8f authored by smorlat's avatar smorlat
Browse files

add trace

improve scripts

git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@675 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
parent af72f742
No related merge requests found
Showing with 29 additions and 7 deletions
......@@ -15,9 +15,15 @@ PIXMAPS= linphone2.png \
linphone.png \
stock_people.png
LINPHONE_ICO_RC_FILE=linphone.rc
LINPHONE_ICO_FILE=linphone.ico
EXTRA_DIST= $(PIXMAPS) \
$(GLADE_FILES) \
linphone.iss
linphone.iss \
$(LINPHONE_ICO_RC_FILE) \
$(LINPHONE_ICO_FILE)
if BUILD_GLADE_UI
......@@ -50,8 +56,8 @@ linphone_3_LDADD=$(top_builddir)/oRTP/src/libortp.la \
if BUILD_WIN32
linphone.res: linphone.rc linphone.ico
windres linphone.rc -O coff -o linphone.res
linphone.res: $(LINPHONE_ICO_RC_FILE) $(LINPHONE_ICO_FILE)
windres $(LINPHONE_ICO_RC_FILE) -O coff -o linphone.res
linphone_3_LDADD+=linphone.res -lwininet
linphone_3_LDFLAGS=-Wl,--export-all-symbols -mwindows
......
/*
linphone, gtk-glade interface.
Copyright (C) 2009 Simon MORLAT (simon.morlat@linphone.org)
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/*
* C Implementation: incall_frame
*
* Description:
......@@ -6,7 +24,6 @@
*
* Author: Simon Morlat <simon.morlat@linphone.org>, (C) 2009
*
* Copyright: See COPYING file that comes with this distribution
*
*/
......
......@@ -108,7 +108,6 @@ static int version_compare(const char *v1, const char *v2){
v1+=copytilldot(n1,v1);
v2+=copytilldot(n2,v2);
ms_message("Comparing %s <> %s",n1,n2);
fflush(stdout);
ret=strcmp(n1,n2);
if (ret==0) return version_compare(v1,v2);
else return ret;
......
......@@ -32,10 +32,10 @@ $(LINPHONE_SRC_DIR)/Makefile: $(LINPHONE_SRC_DIR)/configure
./configure --prefix=$(prefix) --enable-shared --disable-static $(LINPHONE_CONFIGURE_EXTRA_OPTIONS)
build-linphone: $(LINPHONE_SRC_DIR)/Makefile
cd $(LINPHONE_SRC_DIR) && make newdate && make && make install
cd $(LINPHONE_SRC_DIR) && make newdate && make $(LINPHONE_MAKE_OPTS) && make install $(LINPHONE_MAKE_OPTS)
$(LINPHONE_ZIP): build-linphone $(WORKDIR)
cd $(LINPHONE_SRC_DIR) && make zip ZIPFILE=$(LINPHONE_ZIP)
cd $(LINPHONE_SRC_DIR) && make zip ZIPFILE=$(LINPHONE_ZIP) $(LINPHONE_MAKE_OPTS)
install-linphone: $(LINPHONE_ZIP) $(INSTALL_ROOT)
cd $(INSTALL_ROOT) && unzip -o $(LINPHONE_ZIP)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment