- Timestamp:
- Apr 11, 2007, 11:08:39 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ntripclient/NtripLinuxClient.c
r438 r439 1 1 /* 2 2 Easy example NTRIP client for Linux/Unix. 3 $Id: NtripLinuxClient.c,v 1.2 4 2007/01/09 08:16:33stoecker Exp $3 $Id: NtripLinuxClient.c,v 1.25 2007/04/04 14:23:47 stoecker Exp $ 4 4 Copyright (C) 2003-2005 by Dirk Stoecker <soft@dstoecker.de> 5 5 … … 34 34 #include <time.h> 35 35 36 #ifndef COMPILEDATE 37 #define COMPILEDATE " built " __DATE__ 38 #endif 39 36 40 /* The string, which is send as agent in HTTP request */ 37 41 #define AGENTSTRING "NTRIP NtripLinuxClient" … … 41 45 42 46 /* CVS revision and version */ 43 static char revisionstr[] = "$Revision: 1.2 4$";44 static char datestr[] = "$Date: 2007/0 1/09 08:16:33$";47 static char revisionstr[] = "$Revision: 1.25 $"; 48 static char datestr[] = "$Date: 2007/04/04 14:23:47 $"; 45 49 46 50 struct Args … … 229 233 if(!res || help) 230 234 { 231 fprintf(stderr, "Version %s (%s) GPL \nUsage:\n%s -s server -u user ...\n"235 fprintf(stderr, "Version %s (%s) GPL" COMPILEDATE "\nUsage:\n%s -s server -u user ...\n" 232 236 " -d " LONG_OPT("--data ") "the requested data set\n" 233 237 " -s " LONG_OPT("--server ") "the server name or address\n" -
trunk/ntripserver/NtripLinuxServer.c
r398 r439 126 126 #include <sys/termios.h> 127 127 #include <sys/types.h> 128 129 #ifndef COMPILEDATE 130 #define COMPILEDATE " built " __DATE__ 131 #endif 128 132 129 133 #ifndef MSG_DONTWAIT … … 924 928 void usage(int rc) 925 929 { 926 fprintf(stderr, "Usage: %s [OPTIONS]\n", VERSION);930 fprintf(stderr, "Usage: " VERSION " [OPTIONS]" COMPILEDATE "\n"); 927 931 fprintf(stderr, " Options are: [-] \n"); 928 932 fprintf(stderr, " -a DestinationCaster name or address (default: %s)\n", -
trunk/rtcm3torinex/rtcm3torinex.c
r378 r439 1 1 /* 2 2 Converter for RTCM3 data to RINEX. 3 $Id: rtcm3torinex.c,v 1.1 6 2007/01/11 15:32:26stoecker Exp $3 $Id: rtcm3torinex.c,v 1.17 2007/01/23 17:16:39 stoecker Exp $ 4 4 Copyright (C) 2005-2006 by Dirk Stoecker <stoecker@euronik.eu> 5 5 … … 51 51 52 52 /* CVS revision and version */ 53 static char revisionstr[] = "$Revision: 1.16 $"; 53 static char revisionstr[] = "$Revision: 1.17 $"; 54 55 #ifndef COMPILEDATE 56 #define COMPILEDATE " built " __DATE__ 57 #endif 54 58 55 59 static uint32_t CRC24(long size, const unsigned char *buf) … … 1017 1021 1018 1022 #ifndef NO_RTCM3_MAIN 1019 static char datestr[] = "$Date: 2007/01/ 11 15:32:26$";1023 static char datestr[] = "$Date: 2007/01/23 17:16:39 $"; 1020 1024 1021 1025 /* The string, which is send as agent in HTTP request */ … … 1235 1239 if(!res || help) 1236 1240 { 1237 RTCM3Error("Version %s (%s) GPL\nUsage: %s -s server -u user ...\n" 1241 RTCM3Error("Version %s (%s) GPL" COMPILEDATE 1242 "\nUsage: %s -s server -u user ...\n" 1238 1243 " -d " LONG_OPT("--data ") "the requested data set\n" 1239 1244 " -f " LONG_OPT("--headerfile ") "file for RINEX header information\n"
Note:
See TracChangeset
for help on using the changeset viewer.