⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gen_ecversion

📁 电驴的MAC源代码
💻
字号:
#!/bin/sh# This file is part of the aMule project.## Copyright (c) 2003-2006 aMule Project ( admin@amule.org / http://www.amule.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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA### This program generates a unique identifier for EC version checking## Invocation: gen_ECVersion <top_srcdir>## Used by the makefile to generate src/ECVersion.htop_srcdir=$1echo -n "Generating ECVersion.h... "final_hash="`cat $top_srcdir/src/libs/ec/cpp/ECCodes.h | ./mkFileSum`"cat > ECVersion.h.new <<EOT/* Automatically generated file. Do not edit! */#ifndef ECVERSION_H#define ECVERSION_H#ifdef HAVE_CONFIG_H#include "config.h"#endif#ifdef SVNDATE#define EC_VERSION_ID "$final_hash"#endif#endif /* ECVERSION_H */EOTif test -f ECVersion.h; then	if diff ECVersion.h ECVersion.h.new >/dev/null 2>&1; then		rm -f ECVersion.h.new		echo "unchanged."	else		mv ECVersion.h.new ECVersion.h		echo "updated."	fielse	mv ECVersion.h.new ECVersion.h	echo "created."fi

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -