From: drowe67 Date: Tue, 20 Nov 2012 08:52:51 +0000 (+0000) Subject: testing adding svn revision to about (and again) X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=c49b37e7ff8ac4bf1e01b26fe6746b82ce9a279e;p=freetel-svn-tracking.git testing adding svn revision to about (and again) git-svn-id: https://svn.code.sf.net/p/freetel/code@1037 01035d8c-6547-0410-b346-abe4f91aad63 --- diff --git a/fdmdv2/src/Makefile.linux b/fdmdv2/src/Makefile.linux index 20adc981..f14905af 100644 --- a/fdmdv2/src/Makefile.linux +++ b/fdmdv2/src/Makefile.linux @@ -11,11 +11,11 @@ CODEC2_PATH=/home/david/codec2-dev WX_CONFIG=$(WX_GTK_PATH)/wx-config WX_CPPFLAGS = $(shell $(WX_CONFIG) --cxxflags) WX_LIBS = $(shell $(WX_CONFIG) --libs core, base, aui, adv) -SVN_REVISION = $(shell svnversion) +SVN_REVISION=$(shell svnversion) CODEC2_INC=-I$(CODEC2_PATH)/src CODEC2_LIB=$(CODEC2_PATH)/src/.libs/libcodec2.a -CPP_FLAGS = $(WX_CPPFLAGS) $(CODEC2_INC) -I. -g -Wall -O3 -DSVN_REV=$(SVN_REVISION) +CPP_FLAGS = $(WX_CPPFLAGS) $(CODEC2_INC) -I. -g -Wall -O3 -DSVN_REV=\"$(SVN_REVISION)\" LIBS = $(WX_LIBS) $(CODEC2_LIB) -lm -lportaudiocpp -lpthread -lsndfile /usr/lib/libsamplerate.so.0 OBJS = topFrame.o \ diff --git a/fdmdv2/src/fdmdv2_main.cpp b/fdmdv2/src/fdmdv2_main.cpp index d8a75e66..423df4c1 100644 --- a/fdmdv2/src/fdmdv2_main.cpp +++ b/fdmdv2/src/fdmdv2_main.cpp @@ -1110,9 +1110,9 @@ void MainFrame::OnHelpAbout(wxCommandEvent& event) { wxString msg; msg.Printf( wxT("FreeDV Narrow Band Digital Voice over Radio Application.\n") - wxT("svn revision %d") - wxT("By David Witten and David Rowe") - , SVN_REV); + wxT("GNU Public License V2.1") + wxT("Copyright (c) David Witten KD0EAG and David Rowe VK5DGR") + wxT("svn revision %s"), SVN_REV); wxMessageBox(msg, wxT("About"), wxOK | wxICON_INFORMATION, this); }