diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2001-12-18 04:13:59 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2001-12-18 04:13:59 +0000 |
commit | 8baceaba7914799fb78a4a8a177423bab95a6fae (patch) | |
tree | cd1904fa8adf734febb3ac5d4d64250908ee2713 /contrib/libio/stdio/configure.in | |
parent | 8489cc4415b1edcaf1bfe1bc43893024b91b599d (diff) |
This commit was manufactured by cvs2svn to create tagvendor/gcc/3.0.2
'gcc-vendor-gcc_3_0_2'.
Notes
Notes:
svn path=/vendor/gcc/dist/; revision=88109
svn path=/vendor/gcc/3.0.2/; revision=88111; tag=vendor/gcc/3.0.2
Diffstat (limited to 'contrib/libio/stdio/configure.in')
-rw-r--r-- | contrib/libio/stdio/configure.in | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/contrib/libio/stdio/configure.in b/contrib/libio/stdio/configure.in deleted file mode 100644 index 83cac17ebc7c..000000000000 --- a/contrib/libio/stdio/configure.in +++ /dev/null @@ -1,49 +0,0 @@ -# This file is a shell script fragment that supplies the information -# necessary for a configure script to process the program in -# this directory. For more information, look at ../configure. - -configdirs= -srctrigger=stdio.h -srcname="libio/stdio" -package_makefile_frag=../Make.pack -package_makefile_rules_frag=../Make.pack.r - -# per-host: - -# per-target: - -LIBDIR=yes -TO_TOPDIR=../../ -ALL=nothing -MOSTLYCLEAN='*.o pic stamp-picdir core stdio.list' -(. ${srcdir}/../config.shared) >${package_makefile_frag} 2>${package_makefile_rules_frag} - -# post-target: - -# Certain files that are used to build a C library (such as fprintf.o) -# are compled from the same sources as the ioXXX versions (such as ioprintf.c). -# These lines add the appropriate rules. -# NOTE: We assume a C compiler that where -o with -c works. -# But these files are not built by default anyway ... - -# TODO: remove rename tmpfile tmpnam - -stdio_renames="fclose fflush fgetpos fgets fopen fprintf fputs fread \ - fscanf fsetpos ftell fwrite getdelim gets perror printf puts \ - scanf setbuffer setvbuf sprintf sscanf ungetc vsprintf vsscanf" -stdio_objects="" - -for file in $stdio_renames ; do - cat >>Makefile <<EOF -$file.o: \$(srcdir)/../io$file.c - if [ -n "\$(PICFLAG)" ]; then \\ - \$(CC_FOR_STDIO) \$(CFLAGS) \$(CINCLUDES) \$(PICFLAG) -c \\ - \$(srcdir)/../io$file.c -D_IO_$file=$file -o pic/$file.o; \\ - fi - \$(CC_FOR_STDIO) \$(CFLAGS) \$(CINCLUDES) -c \\ - \$(srcdir)/../io$file.c -D_IO_$file=$file -o $file.o -EOF - stdio_objects="$stdio_objects $file.o" -done -sed -e "/STDIO_RENAMED_OBJECTS =/s/=.*/=${stdio_objects}/" <Makefile >tmp -mv -f tmp Makefile |