Changeset 511
- Timestamp:
- 08/27/09 10:59:29 (3 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
-
ChangeLog (modified) (1 diff)
-
configure (modified) (10 diffs)
-
configure.ac (modified) (1 diff)
-
src/ocat.c (modified) (1 diff)
-
src/ocatsetup.c (modified) (1 diff)
-
src/ocattun.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r510 r511 1 1 * version 0.2.0 2 - version string improved 2 3 - syslog messages contain name and PID 3 4 - fixed some compiler warnings -
trunk/configure
r510 r511 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.62 for onioncat 0.2.0.r5 09.3 # Generated by GNU Autoconf 2.62 for onioncat 0.2.0.r511. 4 4 # 5 5 # Report bugs to <rahra@cypherpunk.at>. … … 597 597 PACKAGE_NAME='onioncat' 598 598 PACKAGE_TARNAME='onioncat' 599 PACKAGE_VERSION='0.2.0.r5 09'600 PACKAGE_STRING='onioncat 0.2.0.r5 09'599 PACKAGE_VERSION='0.2.0.r511' 600 PACKAGE_STRING='onioncat 0.2.0.r511' 601 601 PACKAGE_BUGREPORT='rahra@cypherpunk.at' 602 602 … … 1260 1260 # This message is too long to be a string in the A/UX 3.1 sh. 1261 1261 cat <<_ACEOF 1262 \`configure' configures onioncat 0.2.0.r5 09to adapt to many kinds of systems.1262 \`configure' configures onioncat 0.2.0.r511 to adapt to many kinds of systems. 1263 1263 1264 1264 Usage: $0 [OPTION]... [VAR=VALUE]... … … 1330 1330 if test -n "$ac_init_help"; then 1331 1331 case $ac_init_help in 1332 short | recursive ) echo "Configuration of onioncat 0.2.0.r5 09:";;1332 short | recursive ) echo "Configuration of onioncat 0.2.0.r511:";; 1333 1333 esac 1334 1334 cat <<\_ACEOF … … 1422 1422 if $ac_init_version; then 1423 1423 cat <<\_ACEOF 1424 onioncat configure 0.2.0.r5 091424 onioncat configure 0.2.0.r511 1425 1425 generated by GNU Autoconf 2.62 1426 1426 … … 1436 1436 running configure, to aid debugging if configure makes a mistake. 1437 1437 1438 It was created by onioncat $as_me 0.2.0.r5 09, which was1438 It was created by onioncat $as_me 0.2.0.r511, which was 1439 1439 generated by GNU Autoconf 2.62. Invocation command line was 1440 1440 … … 2085 2085 # Define the identity of the package. 2086 2086 PACKAGE='onioncat' 2087 VERSION='0.2.0.r5 09'2087 VERSION='0.2.0.r511' 2088 2088 2089 2089 … … 2236 2236 2237 2237 cat >>confdefs.h <<\_ACEOF 2238 #define SVN_REVISION "5 09"2238 #define SVN_REVISION "511" 2239 2239 _ACEOF 2240 2240 … … 5209 5209 # values after options handling. 5210 5210 ac_log=" 5211 This file was extended by onioncat $as_me 0.2.0.r5 09, which was5211 This file was extended by onioncat $as_me 0.2.0.r511, which was 5212 5212 generated by GNU Autoconf 2.62. Invocation command line was 5213 5213 … … 5262 5262 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5263 5263 ac_cs_version="\\ 5264 onioncat config.status 0.2.0.r5 095264 onioncat config.status 0.2.0.r511 5265 5265 configured by $0, generated by GNU Autoconf 2.62, 5266 5266 with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" -
trunk/configure.ac
r508 r511 1 1 2 2 AC_PREREQ(2.62) 3 define([svnversion], esyscmd([sh -c " svnversion | tr -d 'M\n'"]))dnl3 define([svnversion], esyscmd([sh -c "echo -n $(( `svnversion | tr -d 'M'` + 1 ))"]))dnl 4 4 AC_INIT([onioncat],[[0.2.0.r]svnversion],[rahra@cypherpunk.at]) 5 5 AM_INIT_AUTOMAKE([-Wall -Werror]) -
trunk/src/ocat.c
r510 r511 386 386 } 387 387 388 log_msg(LOG_INFO | LOG_FERR, "%s (c) %s -- compiled %s %s", OCAT_AUTHOR, PACKAGE_STRING, __DATE__, __TIME__);388 log_msg(LOG_INFO, "%s", CNF(version)); 389 389 390 390 #if 0 -
trunk/src/ocatsetup.c
r507 r511 131 131 #endif 132 132 133 #ifdef DEBUG 133 134 snprintf(setup_.version, VERSION_STRING_LEN, "%s (c) %s -- compiled %s %s", PACKAGE_STRING, OCAT_AUTHOR, __DATE__, __TIME__); 135 #else 136 snprintf(setup_.version, VERSION_STRING_LEN, "%s (c) %s", PACKAGE_STRING, OCAT_AUTHOR); 137 #endif 134 138 135 139 ctrl_listen_.sin_family = AF_INET; -
trunk/src/ocattun.c
r486 r511 35 35 int tun_alloc(char *dev, int dev_s, struct in6_addr addr) 36 36 { 37 #ifdef __linux__ 37 38 struct ifreq ifr; 39 #endif 38 40 int fd; 39 41 char astr[INET6_ADDRSTRLEN];
Note: See TracChangeset
for help on using the changeset viewer.
