Changeset 2560
- Timestamp:
- Mar 6, 2006, 7:02:54 PM (19 years ago)
- Location:
- trunk/coreutils
- Files:
-
- 1 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/coreutils/Makefile.am
r2554 r2560 1 1 ## Process this file with automake to produce Makefile.in -*-Makefile-*- 2 2 3 SUBDIRS = lib src doc man po tests 3 #SUBDIRS = lib src doc man po tests - man is busted on os/2 - automake problem 4 SUBDIRS = lib src doc po tests 4 5 EXTRA_DIST = Makefile.cfg Makefile.maint GNUmakefile \ 5 6 .kludge-stamp .prev-version THANKS-to-translators THANKStt.in \ -
trunk/coreutils/configure.ac
r2554 r2560 26 26 27 27 AB_INIT() 28 AM_INIT_AUTOMAKE([1.8.3 gnits dist-bzip2]) 28 dnl AM_INIT_AUTOMAKE([1.8.3 gnits dist-bzip2]) 29 AM_INIT_AUTOMAKE([1.7.7 gnits dist-bzip2]) 29 30 30 31 gl_DEFAULT_POSIX2_VERSION -
trunk/coreutils/lib/backupfile.c
r2554 r2560 64 64 #endif 65 65 66 #if D_INO_IN_DIRENT 66 #if D_INO_IN_DIRENT && !defined(__INNOTEK_LIBC__) /* this will be fix in 0.7 and will then be removed! */ 67 67 # define REAL_DIR_ENTRY(dp) ((dp)->d_ino != 0) 68 68 #else -
trunk/coreutils/lib/fts.c
r2554 r2560 797 797 cderrno = 0; 798 798 if (nlinks || type == BREAD) { 799 #ifdef __EMX__ /* will be fixed in libc 0.7 */ 800 if (fts_safe_changedir(sp, cur, dirfd(dirp), cur->fts_accpath)) { 801 #else 799 802 if (fts_safe_changedir(sp, cur, dirfd(dirp), NULL)) { 803 #endif 800 804 if (nlinks && type == BREAD) 801 805 cur->fts_errno = errno; -
trunk/coreutils/lib/getcwd.c
r2554 r2560 96 96 #endif 97 97 98 #if D_INO_IN_DIRENT 98 #if D_INO_IN_DIRENT && !defined(__INNOTEK_LIBC__) /* this will be fix in 0.7 and will then be removed! */ 99 99 # define MATCHING_INO(dp, ino) ((dp)->d_ino == (ino)) 100 100 #else -
trunk/coreutils/lib/regex_internal.h
r2554 r2560 419 419 #ifndef _LIBC 420 420 # ifdef __i386__ 421 # define internal_function __attribute ((regparm (3), stdcall)) 421 # ifdef __OS2__ 422 # define internal_function __attribute ((optlink)) 423 # else 424 # define internal_function __attribute ((regparm (3), stdcall)) 425 # endif 422 426 # else 423 427 # define internal_function -
trunk/coreutils/lib/utimens.c
r2554 r2560 60 60 # define ATTRIBUTE_UNUSED __attribute__ ((__unused__)) 61 61 #endif 62 63 #ifdef __INNOTEK_LIBC__ /* fs doesn't to better than seconds, but we must use futimes! */ 64 # define HAVE_WORKING_UTIMES 1 65 #endif 66 62 67 63 68 /* Set the access and modification time stamps of FD (a.k.a. FILE) to be -
trunk/coreutils/src/cut.c
r2554 r2560 747 747 char *spec_list_string IF_LINT(= NULL); 748 748 749 #ifdef __EMX__ 750 /* a undocumented hack */ 751 if (getenv("CUT_BINARY_MODE")) 752 { 753 extern int _fmode_bin; 754 _fmode_bin = 1; 755 if (!isatty(fileno(stdout))) 756 freopen(NULL, "wb", stdout); 757 if (!isatty(fileno(stdin))) 758 freopen(NULL, "rb", stdin); 759 } 760 #endif 761 749 762 initialize_main (&argc, &argv); 750 763 program_name = argv[0]; -
trunk/coreutils/src/join.c
r2554 r2560 791 791 int i; 792 792 793 #ifdef __EMX__ 794 /* a undocumented hack */ 795 if (getenv("JOIN_BINARY_MODE")) 796 { 797 extern int _fmode_bin; 798 _fmode_bin = 1; 799 if (!isatty(fileno(stdout))) 800 freopen(NULL, "wb", stdout); 801 if (!isatty(fileno(stdin))) 802 freopen(NULL, "rb", stdin); 803 } 804 #endif 805 793 806 initialize_main (&argc, &argv); 794 807 program_name = argv[0]; -
trunk/coreutils/src/pwd.c
r2554 r2560 46 46 }; 47 47 48 #if def D_INO_IN_DIRENT48 #if defined(D_INO_IN_DIRENT) && !defined(__INNOTEK_LIBC__) /* this will be fix in 0.7 and will then be removed! */ 49 49 # define D_INO(dp) ((dp)->d_ino) 50 50 #else
Note:
See TracChangeset
for help on using the changeset viewer.