Remove all SVN/CVS $Id$ idoms.

This commit is contained in:
Godzil 2019-07-24 15:55:35 +01:00
parent 1cf7fd077c
commit 596df479c2
16 changed files with 5 additions and 18 deletions

View File

@ -7,7 +7,6 @@
% Released under open-source, BSD license
% See LICENSE file for full license
%
% $Id: fusd.tex,v 1.63 2003/08/20 22:00:55 jelson Exp $
\documentclass{article}
\addtolength{\topmargin}{-.5in} % repairing LaTeX's huge margins...

View File

@ -1,5 +1,4 @@
%
% $Id: html.sty,v 1.1 2001/05/12 00:38:48 cvs Exp $
% LaTeX2HTML Version 99.2 : html.sty
%
% This file contains definitions of LaTeX commands which are

View File

@ -40,7 +40,6 @@
* need a template from which to start on a real driver, use pager.c
* instead.
*
* $Id: console-read.c 12351 2007-01-19 07:22:54Z xiphmont $
*/
#include <stdio.h>

View File

@ -42,7 +42,6 @@
* directory: /dev/drums/bam, /dev/drums/bum, etc. If you cat one of
* these devices, it returns a string that's the same as its name.
*
* $Id: drums.c 12355 2007-01-19 17:44:17Z xiphmont $
*/
#include <stdio.h>

View File

@ -47,7 +47,6 @@
* to remember if this user has read before; cat /dev/drums/X will
* read infinitely
*
* $Id: drums2.c 12355 2007-01-19 17:44:17Z xiphmont $
*/
#include <stdio.h>

View File

@ -43,7 +43,6 @@
* However, it also prints a prompt to the console, asking the user if
* how loud the drums should be.
*
* $Id: drums3.c 12351 2007-01-19 07:22:54Z xiphmont $
*/
#include <stdio.h>

View File

@ -41,7 +41,6 @@
* stored. Then, when you read (e.g. "cat /dev/echo"), you get back
* whatever you wrote most recently.
*
* $Id: echo.c 12351 2007-01-19 07:22:54Z xiphmont $
*/
#include <stdio.h>

View File

@ -37,7 +37,6 @@
* hello-world: Simply creates a device called /dev/hello-world, which
* greets you when you try to get it.
*
* $Id: helloworld.c 12351 2007-01-19 07:22:54Z xiphmont $
*/
/* EXAMPLE START helloworld.c */

View File

@ -41,7 +41,6 @@
* the other examples, anyway), because this program is both an
* example and part of the regression test suite.
*
* $Id: ioctl.c 12351 2007-01-19 07:22:54Z xiphmont $
*/
#include <stdio.h>

View File

@ -71,7 +71,6 @@
* but want to use it on a system that does not have FUSD, check out
* emlog at http://www.circlemud.org/~jelson/software/emlog.
*
* $Id: logring.c 12351 2007-01-19 07:22:54Z xiphmont $
*/
#include <stdio.h>

View File

@ -60,7 +60,6 @@
* If you close the FD and then reopen it, there will be a race (pages
* that arrive between the close and open will not be delivered).
*
* $Id: pager.c 12355 2007-01-19 17:44:17Z xiphmont $
*/
#include <stdio.h>

View File

@ -42,7 +42,6 @@
* not be read by anyone other than the driver owner (not even root!).
* When you read from the device, it returns your PID to you.
*
* $Id: uid-filter.c 12351 2007-01-19 07:22:54Z xiphmont $
*/
#include <stdio.h>

View File

@ -37,7 +37,6 @@
*
* Private header file used by the Linux Kernel Module
*
* $Id: kfusd.h 12351 2007-01-19 07:22:54Z xiphmont $
*/
#ifndef __KFUSD_H__

View File

@ -40,7 +40,6 @@
* Copyright (c) 2007 Monty and Xiph.Org
* Copyright (c) 2009-2018 Manoel Trapier <godzil@godzil.net>
*
* $Id: kfusd.c 12354 2007-01-19 17:26:14Z xiphmont $
*/
/*
@ -2827,7 +2826,8 @@ STATIC void fusd_status_build_text(fusd_statcontext_t *fs)
}
len += snprintf(buf + len, buf_size - len,
"\nFUSD $Id:$ - %d devices used by %d clients\n",
"\nFUSD %s - %d devices used by %d clients\n",
GIT_DESCRIBE,
total_files, total_clients);
out:

View File

@ -1,6 +1,7 @@
SRC = libfusd.c
OBJ = libfusd.o
TARGETS = libfusd.a libfusd.so.0.0
GIT_DESCRIBE = $(shell git describe --dirty --tags)
default: $(TARGETS)
@ -15,7 +16,7 @@ clean:
rm -f *.o *.so *.so.* *.a *.d *.d.* gmon.out *~
$(TARGETS):
$(MAKE) target CFLAGS='-g -O2 $(SCF) $(GCF)'
$(MAKE) target CFLAGS='-g -O2 $(SCF) $(GCF) -DGIT_DESCRIBE=\"${GIT_DESCRIBE}\"'
target: $(OBJ)
$(LD) $(OBJ) $(SOLDFLAGS) -o libfusd.so.0.0 $(SLF)

View File

@ -35,10 +35,9 @@
*
* authors: jelson and girod
*
* $Id: libfusd.c 12351 2007-01-19 07:22:54Z xiphmont $
*/
char libfusd_c_id[] = "$Id: libfusd.c 12351 2007-01-19 07:22:54Z xiphmont $";
char libfusd_c_id[] = "libfusd.c - FUSD " GIT_DESCRIBE;
#include <stdio.h>
#include <stdlib.h>