-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
411 changed files
with
16,124 additions
and
15,010 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* A C macro for declaring that specific arguments must not be NULL. | ||
Copyright (C) 2009, 2010 Free Software Foundation, Inc. | ||
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 3 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 | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. */ | ||
|
||
/* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools | ||
that the values passed as arguments n, ..., m must be non-NULL pointers. | ||
n = 1 stands for the first argument, n = 2 for the second argument etc. */ | ||
#ifndef _GL_ARG_NONNULL | ||
# if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3 | ||
# define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params)) | ||
# else | ||
# define _GL_ARG_NONNULL(params) | ||
# endif | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Output a system dependent set of variables, describing how to set the | ||
# run time search path of shared libraries in an executable. | ||
# | ||
# Copyright 1996-2008 Free Software Foundation, Inc. | ||
# Copyright 1996-2010 Free Software Foundation, Inc. | ||
# Taken from GNU libtool, 2001 | ||
# Originally by Gordon Matzigkeit <[email protected]>, 1996 | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/sh | ||
# Sign files and upload them. | ||
|
||
scriptversion=2009-04-28.21; # UTC | ||
scriptversion=2009-12-21.21; # UTC | ||
|
||
# Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation | ||
# | ||
|
@@ -73,34 +73,33 @@ actual command line options. Use this to keep your defaults. Comments | |
(#) and empty lines in $conffile are allowed. | ||
Examples: | ||
1. Upload automake-1.8.2b.tar.gz and automake-1.8.2b.tar.bz2 to two sites: | ||
gnupload --to sources.redhat.com:~ftp/pub/automake \\ | ||
--to alpha.gnu.org:automake \\ | ||
automake-1.8.2b.tar.gz automake-1.8.2b.tar.bz2 | ||
2. Same as above, but also create symbolic links to automake-latest.tar.*: | ||
gnupload --to sources.redhat.com:~ftp/pub/automake \\ | ||
--to alpha.gnu.org:automake \\ | ||
--symlink-regex \\ | ||
automake-1.8.2b.tar.gz automake-1.8.2b.tar.bz2 | ||
3. Symlink automake-1.8.2b.tar.gz to automake-latest.tar.gz and | ||
automake-1.8.2b.tar.bz2 to automake-latest.tar.bz2 on both sites: | ||
1. Upload foobar-1.0.tar.gz to ftp.gnu.org: | ||
gnupload --to ftp.gnu.org:foobar foobar-1.0.tar.gz | ||
gnupload --to sources.redhat.com:~ftp/pub/automake \\ | ||
--to alpha.gnu.org:automake \\ | ||
--symlink automake-1.8.2b.tar.gz automake-latest.tar.gz \\ | ||
automake-1.8.2b.tar.bz2 automake-latest.tar.bz2 | ||
2. Upload foobar-1.0.tar.gz and foobar-1.0.tar.xz to ftp.gnu.org: | ||
gnupload --to ftp.gnu.org:foobar foobar-1.0.tar.gz foobar-1.0.tar.xz | ||
4. Delete automake-1.8.2a.tar.gz and .bz2, remove symlink | ||
automake-latest.tar.gz and upload automake-1.8.2b.tar.gz: | ||
gnupload --to sources.redhat.com:~ftp/pub/automake \\ | ||
--to alpha.gnu.org:automake \\ | ||
--delete automake-1.8.2a.tar.gz automake-1.8.2a.tar.bz2 \\ | ||
--rmsymlink automake-latest.tar.gz \\ | ||
-- \\ | ||
automake-1.8.2b.tar.gz automake-1.8.2b.tar.bz2 | ||
3. Same as above, and also create symbolic links to foobar-latest.tar.*: | ||
gnupload --to ftp.gnu.org:foobar \\ | ||
--symlink-regex \\ | ||
foobar-1.0.tar.gz foobar-1.0.tar.xz | ||
4. Upload foobar-0.9.90.tar.gz to two sites: | ||
gnupload --to alpha.gnu.org:foobar \\ | ||
--to sources.redhat.com:~ftp/pub/foobar \\ | ||
foobar-0.9.90.tar.gz | ||
5. Delete oopsbar-0.9.91.tar.gz and upload foobar-0.9.91.tar.gz | ||
(the -- terminates the list of files to delete): | ||
gnupload --to alpha.gnu.org:foobar \\ | ||
--to sources.redhat.com:~ftp/pub/foobar \\ | ||
--delete oopsbar-0.9.91.tar.gz \\ | ||
-- foobar-0.9.91.tar.gz | ||
gnupload uses the ncftpput program to do the transfers; if you don't | ||
happen to have an ncftp package installed, the ncftpput-ftp script in | ||
the build-aux/ directory of the gnulib package | ||
(http://savannah.gnu.org/projects/gnulib) may serve as a replacement. | ||
Report bugs to <[email protected]>. | ||
Send patches to <[email protected]>." | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.