From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dave Love To: egcs@cygnus.com Subject: libf2c/configure.in change Date: Sun, 15 Feb 1998 11:33:00 -0000 Message-id: X-SW-Source: 1998-02/msg00706.html I didn't know the following libf2c change had gone in (good), but I presume it should have a corresponding configure change. Mon Jan 19 17:19:27 EST 1998 [...] libi77: backspace.c: for b->ufmt==0, change sizeof(int) to sizeof(uiolen). On machines where this would make a difference, it is best for portability to compile libI77 with -DUIOLEN_int, which will render the change invisible. 1998-02-15 Dave Love * configure.in: Define UIOLEN_int per dmg advice for Jan 18 backspace.c change. Index: configure.in =================================================================== RCS file: /egcs/carton/cvsfiles/egcs/libf2c/configure.in,v retrieving revision 1.2 diff -u -p -c -r1.2 configure.in *** configure.in 1998/02/02 11:09:23 1.2 --- configure.in 1998/02/15 18:29:21 *************** F2C_INTEGER=$g77_cv_sys_f2cinteger *** 286,291 **** --- 286,297 ---- ac_cpp=$late_ac_cpp AC_SUBST(F2C_INTEGER) + dnl Follow dmg advice to render 1998-01-19 change in backspace.c invisible. + if test "$F2C_INTEGER" = int; then + AC_DEFINE(UIOLEN_int) dnl 64-bit targets + else : + fi + AC_MSG_CHECKING(f2c long int type) late_ac_cpp=$ac_cpp ac_cpp="$late_ac_cpp -I$srcdir/../gcc/f -I../../gcc -I$srcdir/../gcc -I$srcdir/../gcc/config"