ossp-pkg/getopt/README 1.1 -> 1.2
--- README 2003/03/07 10:35:16 1.1
+++ README 2005/10/05 10:11:57 1.2
@@ -1,33 +1,54 @@
OSSP's GNU getopt
- From gcc 3.2.2 (because more stand-alone than original glibc sources):
+ IMPORT
+ ------
+
+ From gcc 4.0.2 (because more stand-alone than original glibc sources):
[ftp://gcc.gnu.org/pub/gcc/releases/]
include/getopt.h -> getopt.h
libiberty/getopt.c -> getopt.c
libiberty/getopt1.c -> getopt1.c
- From glibc 2.3.2:
+ From glibc 2.3.5:
[ftp://ftp.gnu.org/gnu/glibc/]
posix/tstgetopt.c -> getopt_test.c
manual/getopt.texi -> getopt.texi
- From man-pages 1.56:
+ From man-pages 2.08:
[ftp://ftp.kernel.org/pub/linux/docs/manpages/]
man3/getopt.3 -> getopt.3
- From util-linux 2.11 or getopt 1.1.3:
+ From util-linux 2.12r or even getopt 1.1.3:
[http://www.kernel.org/pub/linux/utils/util-linux/]
[http://huizen.dds.nl/~frodol/getopt.html]
- getopt.1 -> getopt.1
- getopt.c -> getopt_main.c
+ getopt/getopt.1 -> getopt.1
+ getopt/getopt.c -> getopt_main.c
+
+ POST-ADJUSTMENTS
+ ----------------
+
+ Apply the following adjustments after importing:
+
+ getopt_main.c:
- Plus replace in getop_main.c:
+ << #if LIBCGETOPT
+ << #include <getopt.h>
+ << #else
+ << #include "getopt.h"
+ << #endif
<< #include "nls.h"
+
+ >> #include "getopt.h"
>> #define WITHOUT_GETTEXT 1
>> #define _(x) x
+ getopt_test.c:
+
+ << #include <getopt.h>
+ >> #include "getopt.h"
+
|
|