summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* copyrightChristopher Faylor2006-01-172-2/+4
|
* * Makefile.in: Replace etcdir with sysconfdir.Corinna Vinschen2006-01-172-2/+6
|
* * include/cygwin/version.h: Bump DLL minor version number to 20.Christopher Faylor2006-01-172-1/+5
|
* 2006-01-16 Nathan Sidwell <nathan@codesourcery.com>Jeff Johnston2006-01-166-4/+1255
| | | | | | * mt/Makefile.in (SCRIPTS, CRT0): Add ms2 files. (crt0-ms2.o): New target. * mt/crt0-ms2.S, mt/exit-ms2.c, mt/ms2.ld, mt/startup-ms2.S: New.
* fix minor typoChristopher Faylor2006-01-161-1/+2
|
* * configure.in: Add AC_PROG_INSTALL handling.Corinna Vinschen2006-01-164-18/+113
| | | | | * configure: Regenerate. * Makefile.in (install): Install CYGWIN_LICENSE.
* Sync top level config files from the master config repositoryNick Clifton2006-01-163-17/+48
|
* * CYGWIN_LICENSE: Fix contact information.Corinna Vinschen2006-01-162-4/+10
|
* * Makefile.in (cygcheck.exe): Do not link against libwininet.a.Corinna Vinschen2006-01-153-12/+61
| | | | | | | * cygcheck.cc (pInternetCloseHandle): Define global function pointer. (display_internet_error): Use it. (package_grep): Attempt to load wininet.dll at runtime. Call WinInet API through function pointers throughout.
* * cygcheck.cc (dump_sysinfo): Convert k32 to HMODULE.Corinna Vinschen2006-01-132-1/+5
|
* * uname.cc (uname): Concatenate a "-WOW64" to utsname's sysnameCorinna Vinschen2006-01-132-2/+12
| | | | member to see when running under WOW64.
* * cygcheck.cc (dump_sysinfo): Convert osname to const and remove castsCorinna Vinschen2006-01-132-30/+65
| | | | | | in subsequent assignments. Recognize Longhorn/Vista and report as not yet supported. Recognize when running under WOW64 and report native CPU type. Slightly rearrange \n printing.
* * net.cc (cygwin_setsockopt): Ignore errors when setting IP_TOS onCorinna Vinschen2006-01-134-34/+70
| | | | | | | | Windows 2000 and above. Clarify the comment about IP_TOS and move to the place where the magic happens. (get_ifconf): Remove unused code. * wincap.h (wincaps::has_disabled_user_tos_setting): New element. * wincap.cc: Implement above element throughout.
* * faq-setup.xml (faq.setup.setup): Correct URL typo.Joshua Daniel Franklin2006-01-132-24/+43
| | | | (faq.setup.snapshots): Clarify.
* * cygcheck.cc: Replace ` with ' throughout.Christopher Faylor2006-01-122-9/+13
|
* * wincap.cc: New file.Corinna Vinschen2006-01-124-4/+62
| | | | | * wincap.h: New file. * Makefile.in: Accomodate having our own wincap implementation now.
* * Update copyrights.Corinna Vinschen2006-01-129-11/+13
|
* * doctool.c (scan_directory): Ignore "CVS" directories.Corinna Vinschen2006-01-122-2/+6
|
* * fhandler_console.cc (set_console_state_for_spawn): Fix to recognize ttys >=Christopher Faylor2006-01-122-1/+6
| | | | 0.
* * fhandler.h (set_console_state_for_spawn): Whackamole the argument back to aChristopher Faylor2006-01-124-5/+16
| | | | | | | | | | bool. * spawn.cc (spawn_guts): Ditto, i.e., once again call set_console_state_for_spawn with an indication of whether we're about to start a cygwin process. * fhandler_console.cc (set_console_state_for_spawn): Don't set the console state if we know we're starting a cygwin process or if we're using a "real" tty.
* copyrightChristopher Faylor2006-01-121-1/+1
|
* copyrightChristopher Faylor2006-01-121-1/+2
|
* 2006-01-11 Jeff Johnston <jjohnstn@redhat.com>Jeff Johnston2006-01-11146-892/+1369
| | | | | | | | | | | | | | | | | | * acinclude.m4: Add hack to prevent INSTALL in subdirs from being set to "../". * Makefile.am: Pass INSTALL in AM_MAKEFLAGS. * aclocal.m4: Regenerated. * configure: Ditto. * Makefile.in: Ditto. * doc/aclocal.m4: Ditto. * doc/configure: Ditto. * iconvdata/aclocal.m4: Ditto. * iconvdata/configure: Ditto. * libc/*/aclocal.m4: Ditto. * libc/*/configure: Ditto. * libc/libc.texinfo: Ditto. * libm/*/aclocal.m4: Ditto. * libm/*/configure: Ditto.
* * include/wincrypt.h (WINADVAPI): Add to prototypes ofDanny Smith2006-01-112-32/+42
| | | | advapi32.dll functions.
* * include/winsock2.h (struct sockaddr_storage): Use RFC 2553Danny Smith2006-01-112-6/+23
| | | | names for padding size constants.
* * include/aclapi.h (WINADVAPI): Add to prototypes.Danny Smith2006-01-114-143/+157
| | | | | * include/winreg.h (WINADVAPI): Likewise. * include/winsvc.h (WINADVAPI): Likewise.
* * dcrt0.cc (dll_crt0_0): Remove call to wincap.init.Corinna Vinschen2006-01-106-12/+38
| | | | | | | | | | | | | | * init.cc (dll_entry): Rename is_wow64_proc to wow64_test_stack_marker. Call wincap.init here before doing anything else. Use wincap.is_wow64 to determine if we're running in a WOW64 emulator. * mmap.cc (MapViewNT): Don't use AT_ROUND_TO_PAGE in WOW64, it's apparently not supported. (mmap64): Don't create mappings beyond EOF, which would need to use AT_ROUND_TO_PAGE, on WOW64. * wincap.cc (wincap): Throw into the .cygwin_dll_common section. (wincapc::init): Determine if running in WOW64 and set wow_64 flag. * wincap.h (class wincapc): Add wow64 member. (wincapc::is_wow64): New method.
* 2006-01-10 Eric Blake <ebb9@byu.net>Jeff Johnston2006-01-103-6/+13
| | | | | * libc/stdio/freopen.c (_freopen_r): Fix use of oflags. * libc/stdio64/freopen64.c (_freopen64_r): Likewise.
* 2006-01-10 Jeff Johnston <jjohnstn@redhat.com>Jeff Johnston2006-01-105-24/+35
| | | | | | | | | * libm/mathfp/s_frexp.c: Check for special values on the original input, not the manipulated output value. * libm/mathfp/sf_frexp.c: Ditto. * libm/mathfp/s_atangent.c: Don't use local value branch when checking for quadrant. * libm/mathfp/sf_atangent.c: Ditto.
* * fhandler_proc.cc (format_proc_cpuinfo): Avoid leading whitespace in modelChristopher Faylor2006-01-102-1/+6
| | | | name.
* .Christopher Faylor2006-01-101-1/+1
|
* * spawn.cc (spawn_guts): Reorganize slightly so that 16 bit check is done priorChristopher Faylor2006-01-102-80/+94
| | | | | | | to check for command.com/cmd.com. Don't bother setting CREATE_SUSPENDED flag for a MS-DOS process since it doesn't work anyway. Avoid calling remember() when the child process has already exited. (av::fixup): Explicitly set cygexec flag to falseon a 16 bit process.
* * xtensa-config.h (XCHAL_HAVE_MUL32_HIGH): Define.Bob Wilson2006-01-092-0/+7
|
* 2006-01-09 Jeff Johnston <jjohnstn@redhat.com>Jeff Johnston2006-01-093-2/+7
| | | | | * libc/stdio/freopen.c: Switch to use isatty instead of _isatty. * libc/stdio64/freopen64.c: Ditto.
* 2006-01-09 Eric Blake <ebb9@byu.net>Jeff Johnston2006-01-093-14/+115
| | | | | * libc/stdio/freopen.c (_freopen_r): Accept NULL filename. * libc/stdio64/freopen64.c (_freopen64_r): Likewise.
* Define EM_ALTERA_NIOS2 and EM_NIOS32.Nick Clifton2006-01-092-2/+10
|
* Check FreeBSD upstream changes and apply important patches.Corinna Vinschen2006-01-094-2/+12
| | | | | | * sysv_sem.cc (__semctl): Check copyin return value (from 1.76). * sysv_shm.cc (shminit): Actually use the iterating variable in the for loop when trying to avoid overflow (from 1.102).
* * include/getopt.h (getopt_long_only): Declare.Corinna Vinschen2006-01-092-0/+6
|
* * cygwin.din: Export getsubopt.Corinna Vinschen2006-01-093-1/+8
| | | | * include/cygwin/version.h: Bump API minor version.
* * fhandler_tty.cc (fhandler_tty_slave::dup): Don't assign a controllingChristopher Faylor2006-01-082-0/+8
| | | | terminal to a process when duped. Linux doesn't do this, so we won't either.
* * environ.cc (spenvs[]): windir -> WINDIR.Christopher Faylor2006-01-082-1/+5
|
* * fhandler_console.cc (fhandler_console::need_invisible): Remove duplicateChristopher Faylor2006-01-072-2/+7
| | | | test.
* * fhandler.h (set_console_state_for_spawn): Eliminate argument fromChristopher Faylor2006-01-074-18/+46
| | | | | | | | | | declaration. * fhandler.cc (set_console_state_for_spawn): Eliminate argument from definition. Always check for invisible console. (fhandler_console::need_invisible): Don't do anything if the windows station is already not visible. * spawn.cc (spawn_guts): Accommodate change of argument to set_console_state_for_spawn.
* 2006-01-06 Jeff Johnston <jjohnstn@redhat.com>Jeff Johnston2006-01-062-2/+10
| | | | | * libc/sys/linux/include/getopt.h: Add macros needed by new version of getopt.c in libc/stdlib.
* * sigproc.cc (no_signals_available): Use existence of signal thread handle toChristopher Faylor2006-01-052-3/+14
| | | | | | | | figure out if we can actually send signals rather than relying on my_sendsig. (hwait_sig): Make static. (sigproc_init): Don't set my_sendsig to anything special. Use new global static hwait_sig. (wait_sig): Set hwait_sig to NULL when we are exiting.
* * cygcheck.cc (dump_sysinfo): Report the failing drive to prevent having toChristopher Faylor2006-01-052-4/+16
| | | | guess.
* * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): RemoveAlexandre Oliva2006-01-053-67/+73
| | | | | @ from continuation. * Makefile.in: Rebuilt.
* * include/getopt.h: Accommodate recent unfortunate newlib changes.Christopher Faylor2006-01-052-0/+8
|
* (fix ChangeLog and check in remaining files)Christopher Faylor2006-01-054-2/+10
| | | | | | * sigproc.cc (sigproc_init): Move clearing of sync_startup here to lessen the likelihood of trying to deal with non-cygwin threads in dll_entry. * fhandler_console: Fix set_console_state_for_spawn comment.
* * cygtls.cc (_cygtls::remove): Don't output debugging info if this isn't aChristopher Faylor2006-01-052-1/+6
| | | | cygwin thread.